mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
Tab order for location information dialog
Fixed the tab order and excluded "notes" and "dive sites with same coordinates" from accessability via tab key. Signed-off-by: Stefan Fuchs <sfuchs@gmx.de>
This commit is contained in:
parent
2b8dda1182
commit
2d47fd1fed
1 changed files with 17 additions and 1 deletions
|
@ -55,7 +55,11 @@
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="7" column="2" rowspan="2" colspan="2">
|
<item row="7" column="2" rowspan="2" colspan="2">
|
||||||
<widget class="QPlainTextEdit" name="diveSiteNotes"/>
|
<widget class="QPlainTextEdit" name="diveSiteNotes">
|
||||||
|
<property name="focusPolicy">
|
||||||
|
<enum>Qt::ClickFocus</enum>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="1" column="2" colspan="2">
|
<item row="1" column="2" colspan="2">
|
||||||
<widget class="QLineEdit" name="diveSiteName"/>
|
<widget class="QLineEdit" name="diveSiteName"/>
|
||||||
|
@ -101,6 +105,9 @@
|
||||||
<verstretch>0</verstretch>
|
<verstretch>0</verstretch>
|
||||||
</sizepolicy>
|
</sizepolicy>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="focusPolicy">
|
||||||
|
<enum>Qt::ClickFocus</enum>
|
||||||
|
</property>
|
||||||
<property name="selectionMode">
|
<property name="selectionMode">
|
||||||
<enum>QAbstractItemView::MultiSelection</enum>
|
<enum>QAbstractItemView::MultiSelection</enum>
|
||||||
</property>
|
</property>
|
||||||
|
@ -159,6 +166,15 @@
|
||||||
<container>1</container>
|
<container>1</container>
|
||||||
</customwidget>
|
</customwidget>
|
||||||
</customwidgets>
|
</customwidgets>
|
||||||
|
<tabstops>
|
||||||
|
<tabstop>diveSiteName</tabstop>
|
||||||
|
<tabstop>diveSiteCountry</tabstop>
|
||||||
|
<tabstop>diveSiteCoordinates</tabstop>
|
||||||
|
<tabstop>geoCodeButton</tabstop>
|
||||||
|
<tabstop>diveSiteDescription</tabstop>
|
||||||
|
<tabstop>diveSiteNotes</tabstop>
|
||||||
|
<tabstop>diveSiteListView</tabstop>
|
||||||
|
</tabstops>
|
||||||
<resources>
|
<resources>
|
||||||
<include location="../subsurface.qrc"/>
|
<include location="../subsurface.qrc"/>
|
||||||
</resources>
|
</resources>
|
||||||
|
|
Loading…
Reference in a new issue