Add support for simple (pre-Lion) fullscreen on Mac OS
This commit is contained in:
parent
c6289ef219
commit
ba5fa2c8b1
9 changed files with 133 additions and 1 deletions
|
@ -754,6 +754,14 @@ void NativeWindowViews::SetSkipTaskbar(bool skip) {
|
|||
#endif
|
||||
}
|
||||
|
||||
void NativeWindowViews::SetSimpleFullScreen(bool simple_fullscreen) {
|
||||
SetFullScreen(simple_fullscreen);
|
||||
}
|
||||
|
||||
bool NativeWindowViews::IsSimpleFullScreen() {
|
||||
return IsFullscreen();
|
||||
}
|
||||
|
||||
void NativeWindowViews::SetKiosk(bool kiosk) {
|
||||
SetFullScreen(kiosk);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue