On Windows focusable: false also means skipTaskbar: true
This commit is contained in:
parent
8eca728e0a
commit
50f1837097
3 changed files with 14 additions and 7 deletions
|
@ -153,7 +153,7 @@ void NativeWindow::InitFromOptions(const mate::Dictionary& options) {
|
|||
SetFullScreen(true);
|
||||
}
|
||||
bool skip;
|
||||
if (options.Get(options::kSkipTaskbar, &skip) && skip) {
|
||||
if (options.Get(options::kSkipTaskbar, &skip)) {
|
||||
SetSkipTaskbar(skip);
|
||||
}
|
||||
bool kiosk;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue