Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
nerrons
purr-data
Commits
afdaef02
Commit
afdaef02
authored
Feb 11, 2016
by
Jonathan Wilkes
Browse files
fix fullscreen mode for pd window
parent
43652cfa
Changes
1
Hide whitespace changes
Inline
Side-by-side
pd/nw/index.js
View file @
afdaef02
...
...
@@ -503,10 +503,8 @@ function nw_create_pd_window_menus(gui, w) {
});
minit
(
m
.
view
.
fullscreen
,
{
click
:
function
()
{
var
win
=
gui
.
Window
.
get
(),
fullscreen
=
win
.
isFullscreen
;
win
.
isFullscreen
=
!
fullscreen
;
pdgui
.
post
(
"
fullscreen is
"
+
!
fullscreen
);
var
win
=
gui
.
Window
.
get
();
win
.
toggleFullscreen
();
}
});
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment