Hide a screen close icon

is it possible to hide the close icon of a screen ?

Hi,

In case of a dialog window, the close button can be hidden be setting closeable="false", e.g.:

<dialogMode width="AUTO" forceDialog="true" closeable="false"/>

Regards,
Gleb

If it was a screen that fills the whole screen?

@Subscribe
public void onInit(InitEvent event) {
    getWindow().setCloseable(false);
}

if I apply this suggestion by clicking on the close icon the screen is not closed but the icon does not disappear

If something doesn’t work, please attache a demo project that reproduces the issue. The code above works for me.