summaryrefslogtreecommitdiff
path: root/src/wx/timeline.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-07-04 02:23:29 +0100
committerCarl Hetherington <cth@carlh.net>2018-07-04 02:23:29 +0100
commitc554c20be02b4a518be1be4266f90b88df9d5bd6 (patch)
tree014aec0045a14dd44d811cefbd14e4dd6628fcf6 /src/wx/timeline.cc
parent7bcf60f8ad3acd4dcae77a120216839b665c4335 (diff)
Replace checkboxes with tools.
Diffstat (limited to 'src/wx/timeline.cc')
-rw-r--r--src/wx/timeline.cc11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/wx/timeline.cc b/src/wx/timeline.cc
index c60568e3a..8524db603 100644
--- a/src/wx/timeline.cc
+++ b/src/wx/timeline.cc
@@ -428,6 +428,8 @@ Timeline::left_down (wxMouseEvent& ev)
break;
case ZOOM:
case ZOOM_ALL:
+ case SNAP:
+ case SEQUENCE:
/* Nothing to do */
break;
}
@@ -499,6 +501,8 @@ Timeline::left_up (wxMouseEvent& ev)
left_up_zoom (ev);
break;
case ZOOM_ALL:
+ case SNAP:
+ case SEQUENCE:
break;
}
}
@@ -571,6 +575,8 @@ Timeline::mouse_moved (wxMouseEvent& ev)
mouse_moved_zoom (ev);
break;
case ZOOM_ALL:
+ case SNAP:
+ case SEQUENCE:
break;
}
}
@@ -611,6 +617,8 @@ Timeline::right_down (wxMouseEvent& ev)
Refresh ();
break;
case ZOOM_ALL:
+ case SNAP:
+ case SEQUENCE:
break;
}
}
@@ -810,6 +818,9 @@ Timeline::tool_clicked (Tool t)
case ZOOM_ALL:
zoom_all ();
break;
+ case SNAP:
+ case SEQUENCE:
+ break;
}
}