aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2019-10-23 08:34:54 -0400
committerGitHub <noreply@github.com>2019-10-23 08:34:54 -0400
commitea9c31164c1ff40cb5c3ddf2a39a3f2385f2bba2 (patch)
treee6f7733aac03196357fe13181144d522958f2187
parentMerge pull request #707 from lbartoletti/fit_picture_at_open (diff)
parentadd shortcuts (diff)
downloadlumina-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.ui35
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>&amp;Open</string>
</property>
+ <property name="shortcut">
+ <string>Ctrl+O</string>
+ </property>
</action>
<action name="action_Save_as">
<property name="text">
<string>&amp;Save as...</string>
</property>
+ <property name="shortcut">
+ <string>Ctrl+S</string>
+ </property>
</action>
<action name="action_Print">
<property name="text">
<string>&amp;Print</string>
</property>
+ <property name="shortcut">
+ <string>Ctrl+P</string>
+ </property>
</action>
<action name="actionZoom_In">
<property name="text">
<string>Zoom &amp;In</string>
</property>
+ <property name="shortcut">
+ <string>Ctrl++</string>
+ </property>
</action>
<action name="actionZoom_Out">
<property name="text">
<string>Zoom &amp;Out</string>
</property>
+ <property name="shortcut">
+ <string>Ctrl+-</string>
+ </property>
</action>
<action name="action_Normal_Zoom">
<property name="text">
<string>&amp;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>
bgstack15