[rkward-cvs] SF.net SVN: rkward: [1177] trunk/rkward
tfry at users.sourceforge.net
tfry at users.sourceforge.net
Sun Jan 21 16:04:55 UTC 2007
Revision: 1177
http://svn.sourceforge.net/rkward/?rev=1177&view=rev
Author: tfry
Date: 2007-01-21 08:04:55 -0800 (Sun, 21 Jan 2007)
Log Message:
-----------
Change shortcuts form Open/Save Workspace
Modified Paths:
--------------
trunk/rkward/ChangeLog
trunk/rkward/rkward/rkward.cpp
Modified: trunk/rkward/ChangeLog
===================================================================
--- trunk/rkward/ChangeLog 2007-01-21 15:58:24 UTC (rev 1176)
+++ trunk/rkward/ChangeLog 2007-01-21 16:04:55 UTC (rev 1177)
@@ -14,6 +14,7 @@
--- Version 0.4.5 - DATE
- TODO: test auto-detection of pluginmap path!
+- change shortcuts for Open/Save Workspace to Ctrl+Shift+O/S to avoid clash with Open/Save Script File
- remove "Configure Packages" option from Workspace menu, as it is also in Settings menu
- fixed: non-local workspaces would not be loaded
- fixed: specifying a workspace to load on the command line would only work for full urls
Modified: trunk/rkward/rkward/rkward.cpp
===================================================================
--- trunk/rkward/rkward/rkward.cpp 2007-01-21 15:58:24 UTC (rev 1176)
+++ trunk/rkward/rkward/rkward.cpp 2007-01-21 16:04:55 UTC (rev 1177)
@@ -313,9 +313,11 @@
fileOpenWorkspace = KStdAction::open(this, SLOT(slotFileOpenWorkspace()), actionCollection(), "file_openx");
fileOpenWorkspace->setText (i18n ("Open Workspace"));
+ fileOpenWorkspace->setShortcut (KShortcut ("Ctrl+Shift+O"));
fileOpenRecentWorkspace = KStdAction::openRecent(this, SLOT(slotFileOpenRecentWorkspace(const KURL&)), actionCollection(), "file_open_recentx");
fileSaveWorkspace = KStdAction::save(this, SLOT(slotFileSaveWorkspace()), actionCollection(), "file_savex");
fileSaveWorkspace->setText (i18n ("Save Workspace"));
+ fileSaveWorkspace->setShortcut (KShortcut ("Ctrl+Shift+S"));
fileSaveWorkspaceAs = KStdAction::saveAs(this, SLOT(slotFileSaveWorkspaceAs()), actionCollection(), "file_save_asx");
fileSaveWorkspaceAs->setText (i18n ("Save Workspace As"));
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the rkward-tracker
mailing list