diff options
author | lbartoletti <l.bartoletti@free.fr> | 2019-10-21 22:53:17 +0200 |
---|---|---|
committer | lbartoletti <l.bartoletti@free.fr> | 2019-10-21 22:55:58 +0200 |
commit | bab524c319191b5e299a17a96ab319d4a792a842 (patch) | |
tree | 3a727e4028ff35365499b66b37298e09b7a7edee | |
parent | Update README.md (diff) | |
download | lumina-bab524c319191b5e299a17a96ab319d4a792a842.tar.gz lumina-bab524c319191b5e299a17a96ab319d4a792a842.tar.bz2 lumina-bab524c319191b5e299a17a96ab319d4a792a842.zip |
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> |