2008-02-19 Benny Malengier <benny.malengier@gramps-project.org>

* src/ViewManager.py: #1559, use CTRL+N/P not ALT+N/P to avoid problems



svn: r10070
This commit is contained in:
Benny Malengier 2008-02-19 13:34:53 +00:00
parent 95304da2c8
commit 3f9fa6f7e1
2 changed files with 9 additions and 10 deletions

View File

@ -1,3 +1,6 @@
2008-02-19 Benny Malengier <benny.malengier@gramps-project.org>
* src/ViewManager.py: #1559, use CTRL+N/P not ALT+N/P to avoid problems
2008-02-19 Peter Landgren <peter.talken@telia.com>
* src/plugins/ExtractCity.py: Works for Swedish laen if the laen letter is within ()

View File

@ -180,10 +180,8 @@ UIDEFAULT = '''<ui>
<accelerator action="F12"/>
<accelerator action="<CONTROL>BackSpace"/>
<accelerator action="<CONTROL>J"/>
<accelerator action="<Alt>N"/>
<accelerator action="<Alt>P"/>
<accelerator action="<Alt>Left"/>
<accelerator action="<Alt>Right"/>
<accelerator action="<CONTROL>N"/>
<accelerator action="<CONTROL>P"/>
</ui>
'''
@ -442,12 +440,10 @@ class ViewManager:
('F12', None, 'F12', "F12", None, self.__keypress),
('<CONTROL>J', None, '<CONTROL>J',
"<CONTROL>J", None, self.__keypress),
('<Alt>N', None, '<Alt>N', "<Alt>N", None, self.__next_view),
('<Alt>P', None, '<Alt>P', "<Alt>P", None, self.__prev_view),
('<Alt>Left', None, '<Alt>Left', "<Alt>Left", None,
self.__prev_view),
('<Alt>Right', None, '<Alt>Right', "<Alt>Right", None,
('<CONTROL>N', None, '<CONTROL>N', "<CONTROL>N", None,
self.__next_view),
('<CONTROL>P', None, '<CONTROL>P', "<CONTROL>P", None,
self.__prev_view),
]
self._action_action_list = [