Fixed handling of alternative terminal application in MiniCli.

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/132/head
Michele Calgaro 4年前
コミット 8b269b0658
署名者: MicheleC
GPGキーID: 2A75B7CA8ADED5CF

@ -69,6 +69,11 @@
<!-- krootwm.cc:496 -->
<!-- config->writeEntry( "SortDirectoriesFirst", b ); -->
</entry>
<entry key="TerminalApplication" type="Path">
<default>konsole</default>
<label>Terminal application</label>
<whatsthis>Defines which terminal application is used.</whatsthis>
</entry>
</group>
<group name="Mouse Buttons">
<entry key="WheelSwitchesWorkspace" type="Bool">
@ -83,11 +88,6 @@
<!-- desktop.cc:397 -->
<!-- (config->readEntry("WheelDirection", default_dir_string) == forward_string) ? Forward : Reverse; -->
</entry>
<entry key="TerminalApplication" type="Path">
<default>konsole</default>
<label>Terminal application</label>
<whatsthis>Defines which terminal application is used.</whatsthis>
</entry>
<entry key="Left" type="String">
<default></default>
<label>Left Mouse Button Action</label>

@ -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() )

読み込み中…
キャンセル
保存