Skip to content

Commit

Permalink
Disabled Context Menu for Smaller Sized Player
Browse files Browse the repository at this point in the history
  • Loading branch information
jaruba committed May 4, 2015
1 parent 36b8cf8 commit 586cb73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion player/core/Hotkeys.qml
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ Rectangle {
sendjsdata["type"] = "mouseRightClick";
fireQmlMessage(JSON.stringify(sendjsdata));
}
if (settings.cursorX == 0 && settings.cursorY == 0) { } else {
if (settings.cursorX == 0 && settings.cursorY == 0) { } else if (!settings.tooSmall) {
if (settings.multiscreen == 1 && fullscreen === false) { } else {
contextblock.addContextItems();
contextblock.open();
Expand Down

0 comments on commit 586cb73

Please sign in to comment.