mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-23 13:04:23 +00:00
Merge pull request #12916 from mr-cn/master
WebUI: Fix wrong file renaming selection range
This commit is contained in:
commit
446d308bf0
@ -38,7 +38,7 @@
|
||||
const decodedName = decodeURIComponent(name);
|
||||
$('rename').value = decodedName;
|
||||
$('rename').focus();
|
||||
$('rename').setSelectionRange(0, decodedName.indexOf('.'));
|
||||
$('rename').setSelectionRange(0, decodedName.lastIndexOf('.'));
|
||||
|
||||
$('renameButton').addEvent('click', function(e) {
|
||||
new Event(e).stop();
|
||||
|
Loading…
x
Reference in New Issue
Block a user