Make ColorPicker button text and tooltips appear in exported projects

This commit is contained in:
Kevin Smith 2021-04-01 02:25:26 -04:00
parent 4b6e9f3157
commit a7d12920f2

View file

@ -847,7 +847,7 @@ ColorPicker::ColorPicker() :
btn_pick->set_flat(true); btn_pick->set_flat(true);
hb_smpl->add_child(btn_pick); hb_smpl->add_child(btn_pick);
btn_pick->set_toggle_mode(true); btn_pick->set_toggle_mode(true);
btn_pick->set_tooltip(TTR("Pick a color from the editor window.")); btn_pick->set_tooltip(RTR("Pick a color from the editor window."));
btn_pick->connect("pressed", callable_mp(this, &ColorPicker::_screen_pick_pressed)); btn_pick->connect("pressed", callable_mp(this, &ColorPicker::_screen_pick_pressed));
VBoxContainer *vbl = memnew(VBoxContainer); VBoxContainer *vbl = memnew(VBoxContainer);
@ -899,12 +899,12 @@ ColorPicker::ColorPicker() :
btn_hsv = memnew(CheckButton); btn_hsv = memnew(CheckButton);
hhb->add_child(btn_hsv); hhb->add_child(btn_hsv);
btn_hsv->set_text(TTR("HSV")); btn_hsv->set_text(RTR("HSV"));
btn_hsv->connect("toggled", callable_mp(this, &ColorPicker::set_hsv_mode)); btn_hsv->connect("toggled", callable_mp(this, &ColorPicker::set_hsv_mode));
btn_raw = memnew(CheckButton); btn_raw = memnew(CheckButton);
hhb->add_child(btn_raw); hhb->add_child(btn_raw);
btn_raw->set_text(TTR("Raw")); btn_raw->set_text(RTR("Raw"));
btn_raw->connect("toggled", callable_mp(this, &ColorPicker::set_raw_mode)); btn_raw->connect("toggled", callable_mp(this, &ColorPicker::set_raw_mode));
text_type = memnew(Button); text_type = memnew(Button);
@ -950,7 +950,7 @@ ColorPicker::ColorPicker() :
add_child(preset_container2); add_child(preset_container2);
bt_add_preset = memnew(Button); bt_add_preset = memnew(Button);
preset_container2->add_child(bt_add_preset); preset_container2->add_child(bt_add_preset);
bt_add_preset->set_tooltip(TTR("Add current color as a preset.")); bt_add_preset->set_tooltip(RTR("Add current color as a preset."));
bt_add_preset->connect("pressed", callable_mp(this, &ColorPicker::_add_preset_pressed)); bt_add_preset->connect("pressed", callable_mp(this, &ColorPicker::_add_preset_pressed));
} }