From a5ebc87c949b9c3e8d1049df3f880d91a2e5e97c Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 13 Feb 2020 14:50:47 +0900 Subject: Fixed handling of alternative terminal application in MiniCli. Signed-off-by: Michele Calgaro (cherry picked from commit 8b269b0658abb58555ea079126033ac9f8f0833c) --- kdesktop/minicli.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'kdesktop/minicli.cpp') diff --git a/kdesktop/minicli.cpp b/kdesktop/minicli.cpp index afc28f3b0..80387aca1 100644 --- a/kdesktop/minicli.cpp +++ b/kdesktop/minicli.cpp @@ -385,10 +385,10 @@ void Minicli::keyPressEvent( TQKeyEvent* e ) TQDialog::keyPressEvent( e ); } -TQString Minicli::terminalCommand (const TQString& cmd, const TQString& args) +TQString Minicli::terminalCommand(const TQString& cmd, const TQString& args) { TQString terminal = KDesktopSettings::terminalApplication().stripWhiteSpace(); - if (terminal.endsWith("konsole")) + if (terminal.startsWith("konsole")) terminal += " --noclose"; if( args.isEmpty() ) -- cgit v1.2.1