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>
This commit is contained in:
Doug Junkins 2020-10-28 17:26:10 -07:00 committed by Dirk Hohndel
parent 6dccce21da
commit e6956b9d57

View file

@ -12,7 +12,11 @@
</property> </property>
<layout class="QVBoxLayout" name="verticalLayout"> <layout class="QVBoxLayout" name="verticalLayout">
<item> <item>
<widget class="TableView" name="table"/> <widget class="TableView" name="table">
<property name="title">
<string>Dive Computers</string>
</property>
</widget>
</item> </item>
</layout> </layout>
</widget> </widget>