mirror of
https://github.com/codex-storage/deluge.git
synced 2025-01-11 20:14:13 +00:00
[2374][WebUI] Fix right-click selection issue
This commit is contained in:
parent
f415fa1a7e
commit
32d5a0bab2
@ -353,7 +353,7 @@
|
|||||||
this.on('rowcontextmenu', function(grid, rowIndex, e) {
|
this.on('rowcontextmenu', function(grid, rowIndex, e) {
|
||||||
e.stopEvent();
|
e.stopEvent();
|
||||||
var selection = grid.getSelectionModel();
|
var selection = grid.getSelectionModel();
|
||||||
if (!selection.hasSelection()) {
|
if (!selection.isSelected(rowIndex)) {
|
||||||
selection.selectRow(rowIndex);
|
selection.selectRow(rowIndex);
|
||||||
}
|
}
|
||||||
deluge.menus.torrent.showAt(e.getPoint());
|
deluge.menus.torrent.showAt(e.getPoint());
|
||||||
|
Loading…
x
Reference in New Issue
Block a user