diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-06-17 14:08:55 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-06-17 14:08:55 +0900 |
commit | d8ac253a08d90dab6118bbc48de1af1f5d8b7056 (patch) | |
tree | d57c50658b8f00e4adf55e0b94daaa185268baa7 /knotes/knotesapp.cpp | |
parent | 966c4bd2a0fde1c1a434b0259af702b3988ed126 (diff) | |
download | tdepim-d8ac253a08d90dab6118bbc48de1af1f5d8b7056.tar.gz tdepim-d8ac253a08d90dab6118bbc48de1af1f5d8b7056.zip |
Removed global shortcuts in KNotes. This conflicted with some shortcut in widely used applications, like midnight commander for example.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'knotes/knotesapp.cpp')
-rw-r--r-- | knotes/knotesapp.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/knotes/knotesapp.cpp b/knotes/knotesapp.cpp index 2a4e84b17..4590e704b 100644 --- a/knotes/knotesapp.cpp +++ b/knotes/knotesapp.cpp @@ -149,16 +149,16 @@ KNotesApp::KNotesApp() // create accels for global shortcuts m_globalAccel = new TDEGlobalAccel( TQT_TQOBJECT(this), "global accel" ); m_globalAccel->insert( "global_new_note", i18n("New Note"), "", - ALT+SHIFT+Key_N, ALT+SHIFT+Key_N , + TDEShortcut(), TDEShortcut(), TQT_TQOBJECT(this), TQT_SLOT(newNote()), true, true ); m_globalAccel->insert( "global_new_note_clipboard", i18n("New Note From Clipboard"), "", - ALT+SHIFT+Key_C, ALT+SHIFT+Key_C, + TDEShortcut(), TDEShortcut(), TQT_TQOBJECT(this), TQT_SLOT(newNoteFromClipboard()), true, true ); m_globalAccel->insert( "global_hide_all_notes", i18n("Hide All Notes"), "", - ALT+SHIFT+Key_H, ALT+SHIFT+Key_H , + TDEShortcut(), TDEShortcut(), TQT_TQOBJECT(this), TQT_SLOT(hideAllNotes()), true, true ); m_globalAccel->insert( "global_show_all_notes", i18n("Show All Notes"), "", - ALT+SHIFT+Key_S, ALT+SHIFT+Key_S, + TDEShortcut(), TDEShortcut(), TQT_TQOBJECT(this), TQT_SLOT(showAllNotes()), true, true ); m_globalAccel->readSettings(); |