summaryrefslogtreecommitdiff
path: root/scripts/split_all_markers.lua
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-02-18 16:12:59 +0100
committerRobin Gareus <robin@gareus.org>2017-02-18 16:12:59 +0100
commit1ab3d33df7b86cab5e168ae0a22f7c0de117141e (patch)
tree658e0af6d3fd247172687688d0f95a59cc81a2cf /scripts/split_all_markers.lua
parent4755c703f4b01cd7de01bda0c72686b93e34e120 (diff)
Some more EditorAction icons & color API update
Diffstat (limited to 'scripts/split_all_markers.lua')
-rw-r--r--scripts/split_all_markers.lua8
1 files changed, 6 insertions, 2 deletions
diff --git a/scripts/split_all_markers.lua b/scripts/split_all_markers.lua
index 64aeea7f5a..967743e56a 100644
--- a/scripts/split_all_markers.lua
+++ b/scripts/split_all_markers.lua
@@ -82,6 +82,8 @@ function icon (params) return function (ctx, width, height, fg)
local m3 = width / 3;
local m6 = width / 6;
+ ctx:set_line_width (.5)
+
-- compare to gtk2_ardour/marker.cc "Marker"
ctx:set_source_rgba (.8, .8, .2, 1.0)
ctx:move_to (width / 2 - m6, 2)
@@ -90,10 +92,12 @@ function icon (params) return function (ctx, width, height, fg)
ctx:rel_line_to (-m6, mh * 0.6)
ctx:rel_line_to (-m6, -mh * 0.6)
ctx:close_path ()
- ctx:fill ()
+ ctx:fill_preserve ()
+ ctx:set_source_rgba (.0, .0, .0, 1.0)
+ ctx:stroke ()
-- draw an arrow <--|--> on top, using the foreground color
- ctx:set_source_rgba (LuaCairo.color_to_rgba (fg))
+ ctx:set_source_rgba (ARDOUR.LuaAPI.color_to_rgba (fg))
ctx:set_line_width (1)
ctx:move_to (width * .5, height * .4)