We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Getters like is_maximized dont fit nicely into our asynchronous library. What is the best way to handle this.
The following C code shows the commands.
else if(method.compare("is_maximized") == 0) { res->SetBoolean("maximized", window_->IsMaximized()); } else if(method.compare("is_minimized") == 0) { res->SetBoolean("minimized", window_->IsMinimized()); } else if(method.compare("is_fullscreen") == 0) { res->SetBoolean("fullscreen", window_->IsFullscreen()); } else if(method.compare("is_kiosk") == 0) { res->SetBoolean("kiosk", window_->IsKiosk()); } else if(method.compare("is_devtools_opened") == 0) { res->SetBoolean("opened", window_->IsDevToolsOpened()); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Getters like is_maximized dont fit nicely into our asynchronous library. What is the best way to handle this.
The following C code shows the commands.
The text was updated successfully, but these errors were encountered: