Skip to content

Commit

Permalink
Fixes #3808 (#3809)
Browse files Browse the repository at this point in the history
  • Loading branch information
divyanash911 authored Mar 10, 2024
1 parent 080e61f commit bd2c91c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/widgets/widgetWindows.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ class WidgetWindow {

if (this._fullscreenEnabled) {
const maxminButton = this._create("div", "wftButton wftMaxmin", this._nonclosebuttons);
maxminButton.onclick = maxminButton.onmousedown = (e) => {
maxminButton.onclick = (e) => {
if (this._maximized) {
this._restore();
this.sendToCenter();
Expand Down

0 comments on commit bd2c91c

Please sign in to comment.