Skip to content

Commit

Permalink
WebUI: fix wrong property for keyboard keys
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocobo1 authored Aug 12, 2024
1 parent d9667b5 commit b1d2b9d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/webui/www/private/scripts/dynamicTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ window.qBittorrent.DynamicTable ??= (() => {

const onDrag = function(el, event) {
if (this.currentHeaderAction === "resize") {
let width = this.startWidth + (event.page.x - this.dragStartX);
let width = this.startWidth + (event.event.pageX - this.dragStartX);
if (width < 16)
width = 16;
this.columns[this.resizeTh.columnName].width = width;
Expand Down Expand Up @@ -743,14 +743,14 @@ window.qBittorrent.DynamicTable ??= (() => {
e.preventDefault();
e.stopPropagation();

if (e.control || e.meta) {
if (e.ctrlKey || e.metaKey) {
// CTRL/CMD ⌘ key was pressed
if (this._this.isRowSelected(this.rowId))
this._this.deselectRow(this.rowId);
else
this._this.selectRow(this.rowId);
}
else if (e.shift && (this._this.selectedRows.length === 1)) {
else if (e.shiftKey && (this._this.selectedRows.length === 1)) {
// Shift key was pressed
this._this.selectRows(this._this.getSelectedRowId(), this.rowId);
}
Expand Down

0 comments on commit b1d2b9d

Please sign in to comment.