diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-01-14 13:56:55 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-01-14 13:56:59 +0100 |
commit | e1060c56cca7eeab8e217eb7b416c16487fd175e (patch) | |
tree | 650918583de83f1c9cbceef02aae0ad40e55a941 /src | |
parent | 2be4bb51f37c34107816a4de6f5bec052b1db598 (diff) | |
parent | fa989fbf572e93c60173d743230f53e216ea044c (diff) |
Merge pull request #7334
fa989fb [qt] coincontrol workaround is still needed in qt5.4 (fixed in qt5.5) (MarcoFalke)
Diffstat (limited to 'src')
-rw-r--r-- | src/qt/coincontroldialog.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/qt/coincontroldialog.cpp b/src/qt/coincontroldialog.cpp index a5c2b6d421..7393c83c7d 100644 --- a/src/qt/coincontroldialog.cpp +++ b/src/qt/coincontroldialog.cpp @@ -408,10 +408,8 @@ void CoinControlDialog::viewItemChanged(QTreeWidgetItem* item, int column) CoinControlDialog::updateLabels(model, this); } - // todo: this is a temporary qt5 fix: when clicking a parent node in tree mode, the parent node - // including all children are partially selected. But the parent node should be fully selected - // as well as the children. Children should never be partially selected in the first place. - // Should be fixed in Qt5.4 and above. https://bugreports.qt.io/browse/QTBUG-43473 + // TODO: Remove this temporary qt5 fix after Qt5.3 and Qt5.4 are no longer used. + // Fixed in Qt5.5 and above: https://bugreports.qt.io/browse/QTBUG-43473 #if QT_VERSION >= 0x050000 else if (column == COLUMN_CHECKBOX && item->childCount() > 0) { |