Skip to content

Commit fc955b1

Browse files
authored
InputInput (#881)
Rack adds "input" to input tooltips so an input named "Audio Input" shows a tooltip of "Audio Input Input". Fix. Closes #878
1 parent 256cd44 commit fc955b1

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

src/Delay.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ struct Delay : modules::XTModule
172172

173173
configInput(INPUT_L, "Left");
174174
configInput(INPUT_R, "Right");
175-
configInput(INPUT_CLOCK, "Clock/BPM Input");
175+
configInput(INPUT_CLOCK, "Clock/BPM");
176176
for (int i = 0; i < n_mod_inputs; ++i)
177177
configInput(DELAY_MOD_INPUT + i, std::string("Mod ") + std::to_string(i + 1));
178178
configOutput(OUTPUT_L, "Left");

src/DelayLineByFreqExpanded.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -191,17 +191,17 @@ struct DelayLineByFreqExpanded : modules::XTModule
191191
configParamNoRand(MOD_PARAM_0 + i, -1, 1, 0, name, "%", 0, 100);
192192
}
193193

194-
configInput(INPUT_L, "In Left");
195-
configInput(INPUT_R, "In Right");
194+
configInput(INPUT_L, "Left");
195+
configInput(INPUT_R, "Right");
196196
configInput(INPUT_VOCT, "Delay Time as Frequency in v/oct");
197197

198-
configInput(INPUT_FBL, "Feedback Input Left");
199-
configInput(INPUT_FBR, "Feedback Input RIGHT");
198+
configInput(INPUT_FBL, "Feedback Left");
199+
configInput(INPUT_FBR, "Feedback Right");
200200
configInput(INPUT_EXCITER_AMP, "Noise Source Amplitude");
201201

202202
for (int i = 0; i < n_mod_inputs; ++i)
203203
{
204-
configInput(MOD_INPUT_0 + i, "Mod " + std::to_string(i + 1) + " Input");
204+
configInput(MOD_INPUT_0 + i, "Mod " + std::to_string(i + 1));
205205
}
206206

207207
configOutput(OUTPUT_L, "Out Left");

src/VCO.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ template <int oscType> struct VCO : public modules::XTModule
252252

253253
configInput(PITCH_CV, "V/Oct");
254254
configInput(RETRIGGER, "Reset/Retrigger");
255-
configInput(AUDIO_INPUT, "Audio Input");
255+
configInput(AUDIO_INPUT, "Audio");
256256
for (int m = 0; m < n_mod_inputs; ++m)
257257
{
258258
auto s = std::string("Modulation Signal ") + std::to_string(m + 1);

0 commit comments

Comments
 (0)