We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f2d47f commit e4fbcf1Copy full SHA for e4fbcf1
js/widgets/widgetWindows.js
@@ -110,6 +110,7 @@ class WidgetWindow {
110
};
111
}
112
const closeButton = this._create("div", "wftButton close", this._drag);
113
+ closeButton.title = _("Close");
114
closeButton.onclick = e => {
115
this.onclose();
116
e.preventDefault();
@@ -154,6 +155,7 @@ class WidgetWindow {
154
155
this._nonclosebuttons.style.display = "flex";
156
this._rollButton = this._create("div", "wftButton rollup", this._nonclosebuttons);
157
const rollButton = this._rollButton;
158
+ rollButton.title = _("Minimize");
159
rollButton.onclick = e => {
160
if (this._rolled) {
161
this.unroll();
0 commit comments