diff options
author | Ken Moore <ken@ixsystems.com> | 2019-10-23 08:34:54 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-23 08:34:54 -0400 |
commit | ea9c31164c1ff40cb5c3ddf2a39a3f2385f2bba2 (patch) | |
tree | e6f7733aac03196357fe13181144d522958f2187 | |
parent | Merge pull request #707 from lbartoletti/fit_picture_at_open (diff) | |
parent | add shortcuts (diff) | |
download | lumina-ea9c31164c1ff40cb5c3ddf2a39a3f2385f2bba2.tar.gz lumina-ea9c31164c1ff40cb5c3ddf2a39a3f2385f2bba2.tar.bz2 lumina-ea9c31164c1ff40cb5c3ddf2a39a3f2385f2bba2.zip |
Merge pull request #705 from lbartoletti/shortcut_lumina_photo
[lumina-photo] add shortcuts
-rw-r--r-- | src-qt5/desktop-utils/lumina-photo/mainUI.ui | 35 |
1 files changed, 34 insertions, 1 deletions
diff --git a/src-qt5/desktop-utils/lumina-photo/mainUI.ui b/src-qt5/desktop-utils/lumina-photo/mainUI.ui index d622050a..29e2a64b 100644 --- a/src-qt5/desktop-utils/lumina-photo/mainUI.ui +++ b/src-qt5/desktop-utils/lumina-photo/mainUI.ui @@ -26,7 +26,7 @@ <x>0</x> <y>0</y> <width>524</width> - <height>22</height> + <height>26</height> </rect> </property> <widget class="QMenu" name="menuFile"> @@ -99,11 +99,17 @@ <property name="text"> <string>Next</string> </property> + <property name="shortcut"> + <string>Right</string> + </property> </action> <action name="actionBack"> <property name="text"> <string>Back</string> </property> + <property name="shortcut"> + <string>Left</string> + </property> </action> <action name="action_Exit"> <property name="text"> @@ -120,31 +126,49 @@ <property name="text"> <string>&Open</string> </property> + <property name="shortcut"> + <string>Ctrl+O</string> + </property> </action> <action name="action_Save_as"> <property name="text"> <string>&Save as...</string> </property> + <property name="shortcut"> + <string>Ctrl+S</string> + </property> </action> <action name="action_Print"> <property name="text"> <string>&Print</string> </property> + <property name="shortcut"> + <string>Ctrl+P</string> + </property> </action> <action name="actionZoom_In"> <property name="text"> <string>Zoom &In</string> </property> + <property name="shortcut"> + <string>Ctrl++</string> + </property> </action> <action name="actionZoom_Out"> <property name="text"> <string>Zoom &Out</string> </property> + <property name="shortcut"> + <string>Ctrl+-</string> + </property> </action> <action name="action_Normal_Zoom"> <property name="text"> <string>&Normal Zoom</string> </property> + <property name="shortcut"> + <string>Ctrl+0</string> + </property> </action> <action name="action_Fit_to_windows"> <property name="text"> @@ -156,6 +180,9 @@ <property name="toolTip"> <string>Fit to Windows</string> </property> + <property name="shortcut"> + <string>F</string> + </property> </action> <action name="action_About"> <property name="text"> @@ -169,6 +196,9 @@ <property name="toolTip"> <string>First image</string> </property> + <property name="shortcut"> + <string>Home</string> + </property> </action> <action name="actionLast"> <property name="text"> @@ -177,6 +207,9 @@ <property name="toolTip"> <string>Last image</string> </property> + <property name="shortcut"> + <string>End</string> + </property> </action> </widget> <customwidgets> |