diff options
author | Jan Mulder <jlmulder@xs4all.nl> | 2019-01-20 17:00:56 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-01-21 17:22:24 +1200 |
commit | e8b0d165a78e802c09edc7dd0ea4ae5bed1d46d6 (patch) | |
tree | 2c2ee51bc48f074f69003a3d7897c310684e1813 /desktop-widgets/filterwidget2.ui | |
parent | 5986225fcec159a9fa4d18cc89e54ae18d97e333 (diff) | |
download | subsurface-e8b0d165a78e802c09edc7dd0ea4ae5bed1d46d6.tar.gz |
Desktop, Filter UI: make date/time consistent
On all (most?) places we use separate date/time fields for the time of a
dive, and we follow the setting from the preferences to format those.
Make the new filter widget consistent, with respect to the to and from
interval.
Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
Diffstat (limited to 'desktop-widgets/filterwidget2.ui')
-rw-r--r-- | desktop-widgets/filterwidget2.ui | 34 |
1 files changed, 26 insertions, 8 deletions
diff --git a/desktop-widgets/filterwidget2.ui b/desktop-widgets/filterwidget2.ui index 8cee672e8..7ed52ef4e 100644 --- a/desktop-widgets/filterwidget2.ui +++ b/desktop-widgets/filterwidget2.ui @@ -160,9 +160,6 @@ </property> </widget> </item> - <item row="5" column="1" colspan="4"> - <widget class="QDateTimeEdit" name="from"/> - </item> <item row="10" column="0"> <widget class="QLabel" name="label_9"> <property name="text"> @@ -170,9 +167,6 @@ </property> </widget> </item> - <item row="6" column="1" colspan="4"> - <widget class="QDateTimeEdit" name="to"/> - </item> <item row="4" column="0"> <widget class="QLabel" name="label_2"> <property name="text"> @@ -252,6 +246,26 @@ </property> </widget> </item> + <item row="5" column="3"> + <widget class="QTimeEdit" name="fromTime"/> + </item> + <item row="5" column="1" colspan="2"> + <widget class="QDateTimeEdit" name="fromDate"> + <property name="calendarPopup"> + <bool>true</bool> + </property> + </widget> + </item> + <item row="6" column="1" colspan="2"> + <widget class="QDateTimeEdit" name="toDate"> + <property name="calendarPopup"> + <bool>true</bool> + </property> + </widget> + </item> + <item row="6" column="3"> + <widget class="QTimeEdit" name="toTime"/> + </item> </layout> </widget> <customwidgets> @@ -267,8 +281,12 @@ <tabstop>maxRating</tabstop> <tabstop>minVisibility</tabstop> <tabstop>maxVisibility</tabstop> - <tabstop>from</tabstop> - <tabstop>to</tabstop> + <tabstop>fromDate</tabstop> + <tabstop>fromTime</tabstop> + <tabstop>toDate</tabstop> + <tabstop>toTime</tabstop> + <tabstop>logged</tabstop> + <tabstop>planned</tabstop> <tabstop>tags</tabstop> <tabstop>people</tabstop> <tabstop>location</tabstop> |