Skip to content

Commit 444a4b5

Browse files
ui,events: more selections changes
do not discard selected rows with ctrl when dragging the mouse.
1 parent 3a6f261 commit 444a4b5

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

ui/opensnitch/customwidgets/generictableview.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -392,6 +392,9 @@ def mouseReleaseEvent(self, event):
392392
if self._first_row_selected == self._last_row_selected:
393393
return
394394

395+
if self.ctrlPressed:
396+
return
397+
395398
first_row = self._first_row_selected-2
396399
self.selectDbRows(first_row, self._last_row_selected)
397400

0 commit comments

Comments
 (0)