convenience method

This commit is contained in:
Adam D. Ruppe 2022-04-05 19:15:36 -04:00
parent 0a57b5dbe9
commit 62a1544bda
1 changed files with 11 additions and 0 deletions

View File

@ -7619,6 +7619,17 @@ class Window : Widget {
win.releaseInputGrab();
}
/++
Sets the window icon which is often seen in title bars and taskbars.
History:
Added April 5, 2022 (dub v10.8)
+/
@property void icon(MemoryImage icon) {
if(win && icon)
win.icon = icon;
}
///
@scriptable
@property bool focused() {