Skip to content

Commit

Permalink
Fix #2149 Cannot click on input box in dialog file picker
Browse files Browse the repository at this point in the history
  • Loading branch information
JannisX11 committed Dec 14, 2023
1 parent 00fa0d6 commit 49637d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/interface/dialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ function buildForm(dialog) {
case 'save':
if (data.type == 'folder' && !isApp) break;

let input = $(`<input class="dark_bordered half" class="focusable_input" type="text" id="${form_id}" disabled>`);
let input = $(`<input class="dark_bordered half" class="focusable_input" type="text" id="${form_id}" style="pointer-events: none;" disabled>`);
input[0].value = settings.streamer_mode.value ? `[${tl('generic.redacted')}]` : data.value || '';
let input_wrapper = $('<div class="input_wrapper"></div>');
input_wrapper.append(input);
Expand Down

0 comments on commit 49637d2

Please sign in to comment.