mirror of
				https://github.com/yuzu-emu/yuzu.git
				synced 2025-11-04 07:33:43 +00:00 
			
		
		
		
	Port citra-emu/citra#3610 to yuzu
This commit is contained in:
		
							parent
							
								
									b55dc9c85e
								
							
						
					
					
						commit
						1b7dc84132
					
				@ -78,6 +78,9 @@ GMainWindow::GMainWindow() : config(new Config()), emu_thread(nullptr) {
 | 
			
		||||
    ui.setupUi(this);
 | 
			
		||||
    statusBar()->hide();
 | 
			
		||||
 | 
			
		||||
    default_theme_paths = QIcon::themeSearchPaths();
 | 
			
		||||
    UpdateUITheme();
 | 
			
		||||
 | 
			
		||||
    InitializeWidgets();
 | 
			
		||||
    InitializeDebugWidgets();
 | 
			
		||||
    InitializeRecentFileMenuActions();
 | 
			
		||||
@ -95,9 +98,6 @@ GMainWindow::GMainWindow() : config(new Config()), emu_thread(nullptr) {
 | 
			
		||||
 | 
			
		||||
    game_list->PopulateAsync(UISettings::values.gamedir, UISettings::values.gamedir_deepscan);
 | 
			
		||||
 | 
			
		||||
    default_theme_paths = QIcon::themeSearchPaths();
 | 
			
		||||
    UpdateUITheme();
 | 
			
		||||
 | 
			
		||||
    // Show one-time "callout" messages to the user
 | 
			
		||||
    ShowCallouts();
 | 
			
		||||
 | 
			
		||||
@ -860,6 +860,7 @@ void GMainWindow::UpdateUITheme() {
 | 
			
		||||
        QIcon::setThemeName(":/icons/default");
 | 
			
		||||
    }
 | 
			
		||||
    QIcon::setThemeSearchPaths(theme_paths);
 | 
			
		||||
    emit UpdateThemedIcons();
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#ifdef main
 | 
			
		||||
 | 
			
		||||
@ -64,6 +64,9 @@ signals:
 | 
			
		||||
     */
 | 
			
		||||
    void EmulationStopping();
 | 
			
		||||
 | 
			
		||||
    // Signal that tells widgets to update icons to use the current theme
 | 
			
		||||
    void UpdateThemedIcons();
 | 
			
		||||
 | 
			
		||||
private:
 | 
			
		||||
    void InitializeWidgets();
 | 
			
		||||
    void InitializeDebugWidgets();
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user