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
Aayush
purr-data
Commits
7db762c9
Commit
7db762c9
authored
Dec 12, 2007
by
Miller Puckette
Browse files
bug fix, open GOP on close
parent
7bdd2332
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/g_canvas.c
View file @
7db762c9
...
...
@@ -738,7 +738,7 @@ void canvas_create_editor(t_glist *x, int createit)
}
for
(
y
=
x
->
gl_list
;
y
;
y
=
y
->
g_next
)
if
(
pd_class
(
&
y
->
g_pd
)
==
canvas_class
&&
((
t_canvas
*
)
y
)
->
gl_isgraph
)
((
t_canvas
*
)
y
)
->
gl_isgraph
&&
!
((
t_canvas
*
)
y
)
->
gl_havewindow
)
canvas_create_editor
((
t_canvas
*
)
y
,
createit
);
}
...
...
@@ -808,7 +808,8 @@ void canvas_vis(t_canvas *x, t_floatarg f)
if
(
glist_isgraph
(
x
)
&&
x
->
gl_owner
)
{
t_glist
*
gl2
=
x
->
gl_owner
;
canvas_create_editor
(
x
,
1
);
if
(
!
x
->
gl_owner
->
gl_isdeleting
)
canvas_create_editor
(
x
,
1
);
if
(
glist_isvisible
(
gl2
))
gobj_vis
(
&
x
->
gl_gobj
,
gl2
,
0
);
x
->
gl_havewindow
=
0
;
...
...
src/notes.txt
View file @
7db762c9
---------------- dolist --------------------
binbuf_read_via_canvas in x_qlist.c
PC device counting problem (first device invoked by -audiodev 0)
fixed crash bug closing patches with open GOPs
fixed PC device counting problem (first device invoked by -audiodev 0)
test:
compile on various versions of linux
...
...
@@ -12,8 +11,8 @@ windows:
"-audiodev" with no args in registry can't start up?
mac:
clicking on windows seems sometimes not to open them
what does OSX do when jack is compiled into Pd but not installed??
turn on paMacCore_ChangeDeviceParameters for mac (pa_mac_core.h)
what does OSX do when jack is compiled into Pd but not installed??
turn on paMacCore_ChangeDeviceParameters for mac (pa_mac_core.h)
Gnome: why don't windows pop up when clicked on?
problems:
...
...
@@ -23,7 +22,6 @@ objects on GOP don't erase if you edit the GOP while they're showing
MSTACKSIZE limitation in m_binbuf.c
add -stack option to make 'regular' stack larger
TK menu on Windows says "wish"
activating windows in Gnome?
help browser broke on Panurge
offer both new and old help browser style
look again at array vis/invis conundrum, g_template.c
...
...
@@ -56,7 +54,9 @@ real-time spectrum grapher
document ||, |, etc, better
features:
clickles connection (hit 'c' key or something)
clicking to prefer selected object if nselect > 1
flag to prevent unlocking patches
clickless connection (hit 'c' key? see Bouchard paper)
messages to suppress menus&accelerators, and invisibilize Pd window
machine-independent fonts
callback scheduling on Mac
...
...
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