浏览代码

Fix button press issue (#1836)

A small code change to fix the issue that was forcing the user to press the "Yes" button twice to restart Ryujinx after it had been updated, instead of only once.
AigleSpartiate 5 年之前
父节点
当前提交
9a808fe484
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      Ryujinx/Updater/UpdateDialog.cs

+ 2 - 2
Ryujinx/Updater/UpdateDialog.cs

@@ -36,8 +36,8 @@ namespace Ryujinx.Ui
 
             ProgressBar.Hide();
 
-            YesButton.Pressed += YesButton_Pressed;
-            NoButton.Pressed  += NoButton_Pressed;
+            YesButton.Clicked += YesButton_Pressed;
+            NoButton.Clicked  += NoButton_Pressed;
         }
         
         private void YesButton_Pressed(object sender, EventArgs args)