diff options
author | Doug Junkins <junkins@foghead.com> | 2020-10-28 17:26:10 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-10-29 15:00:20 -0700 |
commit | e6956b9d57727d886ba7c5432922745a0b10334d (patch) | |
tree | 505c61e0be698d4756c07b943db0b1bf29239cc5 /desktop-widgets | |
parent | 6dccce21da3c0cff94ac2e047174911a1761b8cb (diff) | |
download | subsurface-e6956b9d57727d886ba7c5432922745a0b10334d.tar.gz |
desktop: add label to dive computer table
There was no "title" property on the dive computer table which
was causing an default label of "GroupBox" to appear above the
table. Added a title property to clean up the UI.
Signed-off-by: Doug Junkins <junkins@foghead.com>
Diffstat (limited to 'desktop-widgets')
-rw-r--r-- | desktop-widgets/tab-widgets/TabDiveComputer.ui | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/desktop-widgets/tab-widgets/TabDiveComputer.ui b/desktop-widgets/tab-widgets/TabDiveComputer.ui index e14511fd7..45492a52e 100644 --- a/desktop-widgets/tab-widgets/TabDiveComputer.ui +++ b/desktop-widgets/tab-widgets/TabDiveComputer.ui @@ -12,7 +12,11 @@ </property> <layout class="QVBoxLayout" name="verticalLayout"> <item> - <widget class="TableView" name="table"/> + <widget class="TableView" name="table"> + <property name="title"> + <string>Dive Computers</string> + </property> + </widget> </item> </layout> </widget> |