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
Jonathan Wilkes
purr-data
Commits
f101ebf6
Commit
f101ebf6
authored
Aug 18, 2014
by
Ivica Bukvic
Browse files
*fixed lingering bugs/regressions in iemguis (99.9% sure this is all of them)
parent
ca07227c
Changes
2
Show whitespace changes
Inline
Side-by-side
pd/src/g_all_guis.c
View file @
f101ebf6
...
...
@@ -966,9 +966,9 @@ void iemgui_draw_io(t_iemgui *x, int old_sr_flags)
if
(
a
&&
!
b
)
for
(
i
=
0
;
i
<
n
;
i
++
)
sys_vgui
(
".x%lx.c create prect %d %d %d %d "
"-stroke $pd_colors(iemgui_nlet) "
"-tags {x%lxo%d x%lx outlet
iemgui
}
\n
"
,
"-tags {x%lxo%d x%lx outlet
%s
}
\n
"
,
canvas
,
x1
+
i
*
k
,
y2
-
1
,
x1
+
i
*
k
+
IOWIDTH
,
y2
,
x
,
i
,
x
);
x
,
i
,
x
,
x
->
x_selected
==
x
->
x_glist
?
"iemgui selected"
:
"iemgui"
);
if
(
!
a
&&
b
)
for
(
i
=
0
;
i
<
n
;
i
++
)
sys_vgui
(
".x%lx.c delete x%lxo%d
\n
"
,
canvas
,
x
,
i
);
...
...
@@ -978,9 +978,9 @@ void iemgui_draw_io(t_iemgui *x, int old_sr_flags)
if
(
a
&&
!
b
)
for
(
i
=
0
;
i
<
n
;
i
++
)
sys_vgui
(
".x%lx.c create prect %d %d %d %d "
"-stroke $pd_colors(iemgui_nlet) "
"-tags {x%lxi%d x%lx inlet
iemgui
}
\n
"
,
"-tags {x%lxi%d x%lx inlet
%s
}
\n
"
,
canvas
,
x1
+
i
*
k
,
y1
,
x1
+
i
*
k
+
IOWIDTH
,
y1
+
1
,
x
,
i
,
x
);
x
,
i
,
x
,
x
->
x_selected
==
x
->
x_glist
?
"iemgui selected"
:
"iemgui"
);
if
(
!
a
&&
b
)
for
(
i
=
0
;
i
<
n
;
i
++
)
sys_vgui
(
".x%lx.c delete x%lxi%d
\n
"
,
canvas
,
x
,
i
);
}
...
...
pd/src/g_vumeter.c
View file @
f101ebf6
...
...
@@ -164,7 +164,6 @@ static void vu_draw_new(t_vu *x, t_glist *glist)
"-tags {%lxPLED x%lx text iemgui}
\n
"
,
canvas
,
mid
+
1
,
y1
+
12
,
mid
+
1
,
y1
+
12
,
x
->
x_led_size
,
x
->
x_gui
.
x_bcol
,
x
,
x
);
iemgui_draw_io
(
&
x
->
x_gui
,
7
);
x
->
x_updaterms
=
x
->
x_updatepeak
=
1
;
sys_queuegui
(
x
,
x
->
x_gui
.
x_glist
,
vu_draw_update
);
}
...
...
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