summaryrefslogtreecommitdiff
path: root/libs/widgets
diff options
context:
space:
mode:
Diffstat (limited to 'libs/widgets')
-rw-r--r--libs/widgets/ardour_icon.cc12
1 files changed, 8 insertions, 4 deletions
diff --git a/libs/widgets/ardour_icon.cc b/libs/widgets/ardour_icon.cc
index 0980ad95f5..0c5ea1f055 100644
--- a/libs/widgets/ardour_icon.cc
+++ b/libs/widgets/ardour_icon.cc
@@ -1037,8 +1037,10 @@ ArdourWidgets::ArdourIcon::render (cairo_t *cr,
case TransportPanic:
icon_transport_panic (cr, width, height);
break;
- case TransportStart: // no break
- case TransportEnd: // no break
+ case TransportStart:
+ /* fall through */
+ case TransportEnd:
+ /* fall through */
case TransportRange:
icon_transport_ck (cr, icon, width, height);
break;
@@ -1063,8 +1065,10 @@ ArdourWidgets::ArdourIcon::render (cairo_t *cr,
case NudgeRight:
icon_nudge_right (cr, width, height, fg_color);
break;
- case ZoomIn: // no break
- case ZoomOut: // no break
+ case ZoomIn:
+ /* fall through */
+ case ZoomOut:
+ /* fall through */
case ZoomFull:
icon_zoom (cr, icon, width, height, fg_color);
break;