summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-09-10 02:35:00 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-09-10 02:35:00 +0000
commit37779e7711bf3d6fe5830a7dbf838d551c5f03d0 (patch)
treee351a324ec044d089024f7fc17be788edc24dce7
parent8cc2aac6b810a1184208873fb522b892476b7c6b (diff)
downloadtdebase-37779e77.tar.gz
tdebase-37779e77.zip
* Make Konsole launch from desktop more intuitive
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1173670 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
-rw-r--r--kdesktop/krootwm.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/kdesktop/krootwm.cc b/kdesktop/krootwm.cc
index ce8b3597e..8769de363 100644
--- a/kdesktop/krootwm.cc
+++ b/kdesktop/krootwm.cc
@@ -132,7 +132,7 @@ KRootWm::KRootWm(KDesktop* _desktop) : TQObject(_desktop)
if (kapp->authorize("run_command"))
{
new KAction(i18n("Run Command..."), "run", 0, m_pDesktop, TQT_SLOT( slotExecuteCommand() ), m_actionCollection, "exec" );
- new KAction(i18n("Konsole ..." ), "terminal", CTRL+Key_T, this, TQT_SLOT( slotOpenTerminal() ),
+ new KAction(i18n("Open Terminal Here..." ), "terminal", CTRL+Key_T, this, TQT_SLOT( slotOpenTerminal() ),
m_actionCollection, "open_terminal" );
}
@@ -746,7 +746,7 @@ void KRootWm::slotOpenTerminal()
KConfigGroupSaver gs(KGlobal::config(), "General");
TQString terminal = KGlobal::config()->readPathEntry("TerminalApplication", "konsole");
- *p << terminal;
+ *p << terminal << " --workdir \"$HOME/Desktop\"";
p->start(KProcess::DontCare);