Qt: Disable "Start" unless we are paused (it otherwise has no meaning and causes a crash).
This commit is contained in:
		@@ -249,7 +249,7 @@ void GMainWindow::ShutdownGame() {
 | 
			
		||||
    System::Shutdown();
 | 
			
		||||
 | 
			
		||||
    // Update the GUI
 | 
			
		||||
    ui.action_Start->setEnabled(true);
 | 
			
		||||
    ui.action_Start->setEnabled(false);
 | 
			
		||||
    ui.action_Pause->setEnabled(false);
 | 
			
		||||
    ui.action_Stop->setEnabled(false);
 | 
			
		||||
    render_window->hide();
 | 
			
		||||
 
 | 
			
		||||
@@ -90,6 +90,9 @@
 | 
			
		||||
   </property>
 | 
			
		||||
  </action>
 | 
			
		||||
  <action name="action_Start">
 | 
			
		||||
   <property name="enabled">
 | 
			
		||||
     <bool>false</bool>
 | 
			
		||||
   </property>
 | 
			
		||||
   <property name="text">
 | 
			
		||||
    <string>&Start</string>
 | 
			
		||||
   </property>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user