We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e2f5c99 + 1ba488d commit 3f06478Copy full SHA for 3f06478
examples/x-touch.lua
@@ -48,6 +48,7 @@ midi:A-1=iop/colorzones;focus
48
midi:A#-1=iop/toneequal;focus
49
midi:B-1=iop/colorbalancergb;focus
50
midi:C0=iop/channelmixerrgb;focus
51
+midi:C#0=iop/colorequal;focus
52
]]
53
54
local dt = require "darktable"
@@ -119,6 +120,18 @@ for k = 1,8 do
119
120
"magenta" }
121
element = e[k]
122
123
+ -- try if colorequalizer module is focused; if so select element of graph
124
+ elseif dt.gui.action("iop/colorequal", "focus") ~= 0 then
125
+ local e = { "red",
126
+ "orange",
127
+ "yellow",
128
+ "green",
129
+ "cyan",
130
+ "blue",
131
+ "lavender",
132
+ "magenta" }
133
+ which = "iop/colorequal/graph"
134
+ element = e[k]
135
136
-- if the sigmoid rgb primaries is focused,
137
-- check sliders
0 commit comments