Skip to content

Commit

Permalink
Merge pull request #90869 from KoBeWi/babe_wake_up,_new_color_space_j…
Browse files Browse the repository at this point in the history
…ust_dropped

Don't translate ColorPicker color labels
  • Loading branch information
akien-mga committed Apr 22, 2024
2 parents 462b894 + 9ab3ff0 commit f0db317
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scene/gui/color_picker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -403,8 +403,9 @@ void ColorPicker::add_mode(ColorMode *p_mode) {
}

void ColorPicker::create_slider(GridContainer *gc, int idx) {
Label *lbl = memnew(Label());
Label *lbl = memnew(Label);
lbl->set_v_size_flags(SIZE_SHRINK_CENTER);
lbl->set_auto_translate_mode(AUTO_TRANSLATE_MODE_DISABLED);
gc->add_child(lbl);

HSlider *slider = memnew(HSlider);
Expand Down

0 comments on commit f0db317

Please sign in to comment.