mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-29 16:10:48 -07:00
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.
This commit is contained in:
@ -36,8 +36,8 @@ namespace Ryujinx.Ui
|
|||||||
|
|
||||||
ProgressBar.Hide();
|
ProgressBar.Hide();
|
||||||
|
|
||||||
YesButton.Pressed += YesButton_Pressed;
|
YesButton.Clicked += YesButton_Pressed;
|
||||||
NoButton.Pressed += NoButton_Pressed;
|
NoButton.Clicked += NoButton_Pressed;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void YesButton_Pressed(object sender, EventArgs args)
|
private void YesButton_Pressed(object sender, EventArgs args)
|
||||||
|
Reference in New Issue
Block a user