Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
nerrons
purr-data
Commits
ebbd6ad1
Commit
ebbd6ad1
authored
Oct 08, 2016
by
Jonathan Wilkes
Browse files
fix #83 again: GUI Freeze with hslider, vslider and vu
parent
014406e8
Changes
1
Hide whitespace changes
Inline
Side-by-side
pd/nw/pdgui.js
View file @
ebbd6ad1
...
...
@@ -3733,11 +3733,14 @@ function gui_gatom_dialog(did, attr_array) {
}
function
gui_gatom_activate
(
cid
,
tag
,
state
)
{
var
g
=
get_gobj
(
cid
,
tag
);
if
(
state
!==
0
)
{
g
.
classList
.
add
(
"
activated
"
);
}
else
{
g
.
classList
.
remove
(
"
activated
"
);
var
g
;
if
(
patchwin
[
cid
])
{
g
=
get_gobj
(
cid
,
tag
);
if
(
state
!==
0
)
{
g
.
classList
.
add
(
"
activated
"
);
}
else
{
g
.
classList
.
remove
(
"
activated
"
);
}
}
}
...
...
Write
Preview
Markdown
is supported
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