mirror of
				https://git.suyu.dev/suyu/suyu.git
				synced 2025-11-04 12:34:39 +08:00 
			
		
		
		
	Merge pull request #7353 from v1993/no-more-epilepsy
Prevent window flickering when holding Esc
This commit is contained in:
		
						commit
						a100f5d5d4
					
				@ -1031,7 +1031,7 @@ void GMainWindow::InitializeHotkeys() {
 | 
			
		||||
            &QShortcut::activatedAmbiguously, ui->action_Fullscreen, &QAction::trigger);
 | 
			
		||||
    connect(hotkey_registry.GetHotkey(main_window, QStringLiteral("Exit Fullscreen"), this),
 | 
			
		||||
            &QShortcut::activated, this, [&] {
 | 
			
		||||
                if (emulation_running) {
 | 
			
		||||
                if (emulation_running && ui->action_Fullscreen->isChecked()) {
 | 
			
		||||
                    ui->action_Fullscreen->setChecked(false);
 | 
			
		||||
                    ToggleFullscreen();
 | 
			
		||||
                }
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user