diff options
author | Thomas O Fredericks <mrtof@users.sourceforge.net> | 2008-04-03 15:39:28 +0000 |
---|---|---|
committer | Thomas O Fredericks <mrtof@users.sourceforge.net> | 2008-04-03 15:39:28 +0000 |
commit | 3adbad6f33d27d9004f699779ca99fe0bfa2c5de (patch) | |
tree | ed0041dfb810354a01c0ee01fc87826d826dad21 /src/w_breakpoints.h | |
parent | 26e0d82e7c375ea0313c137f97fecfac84719b7b (diff) |
Added banging to phasorshot~ even when not looping AND modified w_breakpoints behavior in regard to it's default range
svn path=/trunk/externals/tof/; revision=9677
Diffstat (limited to 'src/w_breakpoints.h')
-rwxr-xr-x | src/w_breakpoints.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/w_breakpoints.h b/src/w_breakpoints.h index 672fc93..a44d793 100755 --- a/src/w_breakpoints.h +++ b/src/w_breakpoints.h @@ -68,7 +68,7 @@ static void draw_inlets(t_breakpoints *x, t_glist *glist, int firsttime, int nin static int breakpoints_next_doodle(t_breakpoints *x, struct _glist *glist,
int xpos,int ypos)
{
- int ret = -1;
+ // int ret = -1;
float xscale,yscale;
int dxpos,dypos;
float minval = 100000.0;
@@ -311,7 +311,7 @@ void breakpoints_drawme(t_breakpoints *x, t_glist *glist, int firsttime) void breakpoints_erase(t_breakpoints* x,t_glist* glist)
{
- int n;
+ //int n;
sys_vgui(".x%x.c delete %xS\n",
glist_getcanvas(glist), x);
@@ -364,13 +364,14 @@ static void breakpoints_select(t_gobj *z, t_glist *glist, int state) x, (state? "blue" : BACKGROUNDCOLOR));
}
-
+/*
static void breakpoints_activate(t_gobj *z, t_glist *glist, int state)
{
-/* t_text *x = (t_text *)z;
+ t_text *x = (t_text *)z;
t_rtext *y = glist_findrtext(glist, x);
- if (z->g_pd != gatom_class) rtext_activate(y, state);*/
+ if (z->g_pd != gatom_class) rtext_activate(y, state);
}
+*/
static void breakpoints_delete(t_gobj *z, t_glist *glist)
{
|