diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-01-04 09:21:29 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-01-04 09:21:35 +0100 |
| commit | 08ab9069afaa452826dbf6373a8315ea53dc6832 (patch) | |
| tree | 0221815eb608fc38ec3990e0eb2d1f9132fd38ff /src/qt | |
| parent | Merge pull request #7276 (diff) | |
| parent | Add note to CoinControl Dialog workaround (diff) | |
| download | discoin-08ab9069afaa452826dbf6373a8315ea53dc6832.tar.xz discoin-08ab9069afaa452826dbf6373a8315ea53dc6832.zip | |
Merge pull request #7256
33877ed Add note to CoinControl Dialog workaround (fanquake)
Diffstat (limited to 'src/qt')
| -rw-r--r-- | src/qt/coincontroldialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/coincontroldialog.cpp b/src/qt/coincontroldialog.cpp index 0f4224304..916e66706 100644 --- a/src/qt/coincontroldialog.cpp +++ b/src/qt/coincontroldialog.cpp @@ -411,7 +411,7 @@ void CoinControlDialog::viewItemChanged(QTreeWidgetItem* item, int column) // 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. - // Please remove this ugly fix, once the bug is solved upstream. + // Should be fixed in Qt5.4 and above. https://bugreports.qt.io/browse/QTBUG-43473 #if QT_VERSION >= 0x050000 else if (column == COLUMN_CHECKBOX && item->childCount() > 0) { |