@@ -104,7 +104,7 @@ NeuralAmpModeler::NeuralAmpModeler(const InstanceInfo& info)
104104 pGraphics->LoadFont (" Roboto-Regular" , ROBOTO_FN);
105105 pGraphics->LoadFont (" Michroma-Regular" , MICHROMA_FN);
106106
107- const auto helpSVG = pGraphics->LoadSVG (HELP_FN );
107+ const auto gearSVG = pGraphics->LoadSVG (GEAR_FN );
108108 const auto fileSVG = pGraphics->LoadSVG (FILE_FN);
109109 const auto crossSVG = pGraphics->LoadSVG (CLOSE_BUTTON_FN);
110110 const auto rightArrowSVG = pGraphics->LoadSVG (RIGHT_ARROW_FN);
@@ -163,7 +163,7 @@ NeuralAmpModeler::NeuralAmpModeler(const InstanceInfo& info)
163163 const auto outputMeterArea = contentArea.GetFromRight (30 ).GetHShifted (20 ).GetMidVPadded (100 ).GetVShifted (-25 );
164164
165165 // Misc Areas
166- const auto helpButtonArea = mainArea.GetFromTRHC (50 , 50 ).GetCentredInside (20 , 20 );
166+ const auto settingsButtonArea = mainArea.GetFromTRHC (50 , 50 ).GetCentredInside (20 , 20 );
167167
168168 // Model loader button
169169 auto loadModelCompletionHandler = [&](const WDL_String& fileName, const WDL_String& path) {
@@ -241,15 +241,15 @@ NeuralAmpModeler::NeuralAmpModeler(const InstanceInfo& info)
241241 pGraphics->AttachControl (new NAMMeterControl (inputMeterArea, meterBackgroundBitmap, style), kCtrlTagInputMeter );
242242 pGraphics->AttachControl (new NAMMeterControl (outputMeterArea, meterBackgroundBitmap, style), kCtrlTagOutputMeter );
243243
244- // Help /about box
244+ // Settings/help /about box
245245 pGraphics->AttachControl (new NAMCircleButtonControl (
246- helpButtonArea ,
246+ settingsButtonArea ,
247247 [pGraphics](IControl* pCaller) {
248- pGraphics->GetControlWithTag (kCtrlTagAboutBox )->As <NAMAboutBoxControl>()->HideAnimated (false );
248+ pGraphics->GetControlWithTag (kCtrlTagSettingsBox )->As <NAMAboutBoxControl>()->HideAnimated (false );
249249 },
250- helpSVG ));
250+ gearSVG ));
251251
252- pGraphics->AttachControl (new NAMAboutBoxControl (b, backgroundBitmap, style), kCtrlTagAboutBox )->Hide (true );
252+ pGraphics->AttachControl (new NAMAboutBoxControl (b, backgroundBitmap, style), kCtrlTagSettingsBox )->Hide (true );
253253
254254 pGraphics->ForAllControlsFunc ([](IControl* pControl) {
255255 pControl->SetMouseEventsWhenDisabled (true );
0 commit comments