Skip to content

Commit 60d4a1d

Browse files
committed
fix #1 - Using spacebar to uncheck packages does not mark them for deletion.
1 parent ab531fa commit 60d4a1d

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

Diff for: ChangeLog

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
-------------------------------------------------------------------
2+
Sun Jan 12 15:09:45 CET 2020 - [email protected]
3+
- fix issue 1 Using spacebar to uncheck packages does not mark them for deletion
4+
- 1.0.6
5+
16
-------------------------------------------------------------------
27
Sun Dec 16 21:21:42 CET 2018 - [email protected]
38
- fix build against qt-5.11.0

Diff for: VERSION.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
SET(VERSION_MAJOR "1")
22
SET(VERSION_MINOR "0")
3-
SET(VERSION_PATCH "5")
3+
SET(VERSION_PATCH "6")
44
SET( VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}${GIT_SHA1_VERSION}" )
55

66
##### This is need for the libyui core, ONLY.

Diff for: src/YMGA_QCBTable.cc

+4
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,10 @@ YMGA_QCBTable::YMGA_QCBTable( YWidget * parent, YTableHeader * tableHeader, YCBT
107107
connect ( _qt_listView, SIGNAL ( itemClicked ( QTreeWidgetItem *, int ) ),
108108
this, SLOT ( slotcolumnClicked ( QTreeWidgetItem *, int ) ) );
109109

110+
connect ( _qt_listView, SIGNAL ( itemChanged ( QTreeWidgetItem *, int ) ),
111+
this, SLOT ( slotcolumnClicked ( QTreeWidgetItem *, int ) ) );
112+
113+
110114
connect ( _qt_listView, SIGNAL ( currentItemChanged ( QTreeWidgetItem *, QTreeWidgetItem * ) ),
111115
this, SLOT ( slotSelected ( QTreeWidgetItem * ) ) );
112116

0 commit comments

Comments
 (0)