Include 'perfect' mode in tree placer setting helptext

This commit is contained in:
Jonathan G Rennison
2023-06-02 18:41:52 +01:00
parent 58c0aac15f
commit 819b9fcdd9
3 changed files with 18 additions and 0 deletions

View File

@@ -1897,6 +1897,19 @@ static bool ZoomMaxCfgName(SettingOnGuiCtrlData &data)
}
}
static bool TreePlacerSettingGUI(SettingOnGuiCtrlData &data)
{
switch (data.type) {
case SOGCT_DESCRIPTION_TEXT:
SetDParam(0, data.text);
data.text = STR_CONFIG_SETTING_TREE_PLACER_HELPTEXT_EXTRA;
return true;
default:
return false;
}
}
/* End - GUI callbacks */
/**