client: Hide native title bar setting on web

This commit is contained in:
Elian Doran
2024-08-16 21:41:15 +03:00
parent bd732386e4
commit 4a8c3d719f
5 changed files with 22 additions and 0 deletions

View File

@@ -131,6 +131,10 @@ class BasicWidget extends Component {
return this.$widget;
}
/**
* Indicates if the widget is enabled. Widgets are enabled by default. Generally setting this to `false` will cause the widget not to be displayed, however it will still be available on the DOM but hidden.
* @returns
*/
isEnabled() {
return true;
}