Skip to content

Commit

Permalink
Remap key bindings for search (fixes #5)
Browse files Browse the repository at this point in the history
Change key bindings for forward/rewind from <CTRL>Left/Right to
<CRTL><SHIFT>Left/Right so the standard key bindings for moving one
word backwards/forwards are still usable.
  • Loading branch information
innir committed Jan 28, 2017
1 parent 53e4861 commit d8c7ef2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions data/ui/gTranscribe.glade
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</object>
<object class="GtkWindow" id="gtranscribe_window">
<property name="can_focus">False</property>
<property name="title" translatable="no">gTranscribe</property>
<property name="title">gTranscribe</property>
<property name="default_width">450</property>
<property name="default_height">550</property>
<signal name="delete-event" handler="quit" swapped="no"/>
Expand Down Expand Up @@ -168,7 +168,7 @@
<property name="use_underline">True</property>
<property name="use_stock">True</property>
<signal name="activate" handler="forward" swapped="no"/>
<accelerator key="Right" signal="activate" modifiers="GDK_CONTROL_MASK"/>
<accelerator key="Right" signal="activate" modifiers="GDK_SHIFT_MASK | GDK_CONTROL_MASK"/>
</object>
</child>
<child>
Expand All @@ -179,7 +179,7 @@
<property name="use_underline">True</property>
<property name="use_stock">True</property>
<signal name="activate" handler="rewind" swapped="no"/>
<accelerator key="Left" signal="activate" modifiers="GDK_CONTROL_MASK"/>
<accelerator key="Left" signal="activate" modifiers="GDK_SHIFT_MASK | GDK_CONTROL_MASK"/>
</object>
</child>
<child>
Expand Down Expand Up @@ -239,7 +239,7 @@
<object class="GtkLabel" id="label_position">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="label" translatable="no">00:00.0</property>
<property name="label">00:00.0</property>
</object>
<packing>
<property name="expand">False</property>
Expand Down Expand Up @@ -309,7 +309,7 @@
<object class="GtkLabel" id="label_duration">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="label" translatable="no">00:00.0</property>
<property name="label">00:00.0</property>
</object>
<packing>
<property name="expand">False</property>
Expand Down

0 comments on commit d8c7ef2

Please # to comment.