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 c0935eb + 4cc50e4 commit 67c96c8Copy full SHA for 67c96c8
scene/gui/color_picker.cpp
@@ -888,7 +888,7 @@ inline int ColorPicker::_get_preset_size() {
888
void ColorPicker::_add_preset_button(int p_size, const Color &p_color) {
889
ColorPresetButton *btn_preset_new = memnew(ColorPresetButton(p_color, p_size));
890
btn_preset_new->set_tooltip_text(vformat(atr(ETR("Color: #%s\nLMB: Apply color\nRMB: Remove preset")), p_color.to_html(p_color.a < 1)));
891
- btn_preset_new->set_accessibility_name(vformat(atr(ETR("Color: #%")), p_color.to_html(p_color.a < 1)));
+ btn_preset_new->set_accessibility_name(vformat(atr(ETR("Color: #%s")), p_color.to_html(p_color.a < 1)));
892
SET_DRAG_FORWARDING_GCDU(btn_preset_new, ColorPicker);
893
btn_preset_new->set_button_group(preset_group);
894
preset_container->add_child(btn_preset_new);
0 commit comments