Skip to content

Commit

Permalink
fix mobile user agent
Browse files Browse the repository at this point in the history
  • Loading branch information
aminought committed Jan 2, 2025
1 parent ff39864 commit 6fa2e09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/second_sidebar/xul/web_panel_popup_more.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export class WebPanelPopupMore extends Panel {
listenMobileButtonClick(callback) {
this.mobileButton.addEventListener("click", (event) => {
if (isLeftMouseButton(event)) {
callback(this.settings.uuid, !this.mobileButton.isChecked());
callback(this.settings.uuid, this.mobileButton.isChecked());
}
});
}
Expand Down

0 comments on commit 6fa2e09

Please sign in to comment.