Skip to content

Commit

Permalink
[OldOpenFile] Remove instance/shortcut
Browse files Browse the repository at this point in the history
  • Loading branch information
luspi committed Jan 17, 2017
1 parent db2bb42 commit bcebb0f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 1 addition & 2 deletions qml/mainwindow.qml
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,6 @@ Item {
Filter { id: filter; }
Startup { id: startup; }
OpenFile { id: openfile; }
OldOpenFile { id: oldopenfile; }
SettingsManager { id: settingsmanager; }

////////////////////////////////////////////
Expand Down Expand Up @@ -279,7 +278,7 @@ Item {
function showStartup(type, filename) { startup.showStartup(type, filename); }

function openFile() { openfile.show(); }
function openFileOLD() { oldopenfile.show(); }
function openFileOLD() { openfile.show(); }
function hideOpenFile() { openfile.hide(); }

function getCursorPos() { return localcursorpos; }
Expand Down
2 changes: 0 additions & 2 deletions qml/settingsmanager/tabs/TabShortcuts.qml
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,6 @@ Rectangle {
category: qsTr("Navigation")
//: This is a shortcut description
allAvailableItems: [["__open",qsTr("Open New File")],
//: This is a shortcut description
["__openOld",qsTr("Open New File") + " (Old)"],
//: This is a shortcut description
["__filterImages",qsTr("Filter Images in Folder")],
//: This is a shortcut description
Expand Down

0 comments on commit bcebb0f

Please sign in to comment.