From 1dd129c3e8b3f7442e95f91dd24323d9fada30af Mon Sep 17 00:00:00 2001 From: Sander van Grieken Date: Mon, 15 May 2023 16:51:49 +0200 Subject: [PATCH] qml: remove logging ElCombobox --- electrum/gui/qml/components/controls/ElComboBox.qml | 3 --- 1 file changed, 3 deletions(-) diff --git a/electrum/gui/qml/components/controls/ElComboBox.qml b/electrum/gui/qml/components/controls/ElComboBox.qml index 2137a4e42..48366956f 100644 --- a/electrum/gui/qml/components/controls/ElComboBox.qml +++ b/electrum/gui/qml/components/controls/ElComboBox.qml @@ -20,12 +20,9 @@ ComboBox { // determine widest element and store in implicitChildrenWidth function updateImplicitWidth() { - console.log('updating implicit width') - console.log(cb.count) for (let i = 0; i < cb.count; i++) { var txt = cb.textAt(i) var txtwidth = fontMetrics.advanceWidth(txt) - console.log(txt + ' is ' + txtwidth + ' wide') if (txtwidth > cb.implicitChildrenWidth) { cb.implicitChildrenWidth = txtwidth }