Window: executeConfig: Fix after refactoring for Qt 5.15
Refactoring for 5.15 broke this (d9b0be5063),
so fix it.
			
			
This commit is contained in:
		@@ -125,7 +125,7 @@ void Window::executeConfig(const EntryConfig &config)
 | 
				
			|||||||
		QString cmd = settingsProvider->getTerminalCommand();
 | 
							QString cmd = settingsProvider->getTerminalCommand();
 | 
				
			||||||
		cmd.replace("%c", config.command);
 | 
							cmd.replace("%c", config.command);
 | 
				
			||||||
		QStringList args = QProcess::splitCommand(cmd);
 | 
							QStringList args = QProcess::splitCommand(cmd);
 | 
				
			||||||
		QProcess::startDetached(cmd, args);
 | 
							QProcess::startDetached(args[0], args);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	else
 | 
						else
 | 
				
			||||||
	{
 | 
						{
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user