diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-12-20 19:54:48 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-12-20 19:54:51 -0800 |
commit | f8b354d64d4f94a8b5a96b36c280354764250702 (patch) | |
tree | 4295a513f5a6399ae518ae9829040e9fa242a796 /mobile-widgets/qml | |
parent | 7fc4ec1163c7235fe90efa59e195263d19c506a4 (diff) | |
download | subsurface-f8b354d64d4f94a8b5a96b36c280354764250702.tar.gz |
mobile/UI: remove incorrect code in ComboBox
This actually created a recursive dependency - I didn't see any negative
visual effect, but lots of annoying warnings.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml')
-rw-r--r-- | mobile-widgets/qml/TemplateComboBox.qml | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/mobile-widgets/qml/TemplateComboBox.qml b/mobile-widgets/qml/TemplateComboBox.qml index c5190e3ab..3721aa77b 100644 --- a/mobile-widgets/qml/TemplateComboBox.qml +++ b/mobile-widgets/qml/TemplateComboBox.qml @@ -57,8 +57,6 @@ ComboBox { } background: Rectangle { - implicitWidth: cb.width - implicitHeight: cb.height border.color: subsurfaceTheme.darkerPrimaryColor border.width: cb.visualFocus ? 2 : 1 color: subsurfaceTheme.backgroundColor |