|
@@ -167,8 +167,7 @@ void EditorPropertyMultilineText::update_property() {
|
|
|
|
|
|
void EditorPropertyMultilineText::_notification(int p_what) {
|
|
void EditorPropertyMultilineText::_notification(int p_what) {
|
|
switch (p_what) {
|
|
switch (p_what) {
|
|
- case NOTIFICATION_THEME_CHANGED:
|
|
|
|
- case NOTIFICATION_ENTER_TREE: {
|
|
|
|
|
|
+ case NOTIFICATION_THEME_CHANGED: {
|
|
Ref<Texture2D> df = get_theme_icon(SNAME("DistractionFree"), SNAME("EditorIcons"));
|
|
Ref<Texture2D> df = get_theme_icon(SNAME("DistractionFree"), SNAME("EditorIcons"));
|
|
open_big_text->set_icon(df);
|
|
open_big_text->set_icon(df);
|
|
|
|
|
|
@@ -322,7 +321,6 @@ void EditorPropertyTextEnum::_bind_methods() {
|
|
|
|
|
|
void EditorPropertyTextEnum::_notification(int p_what) {
|
|
void EditorPropertyTextEnum::_notification(int p_what) {
|
|
switch (p_what) {
|
|
switch (p_what) {
|
|
- case NOTIFICATION_ENTER_TREE:
|
|
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
edit_button->set_icon(get_theme_icon(SNAME("Edit"), SNAME("EditorIcons")));
|
|
edit_button->set_icon(get_theme_icon(SNAME("Edit"), SNAME("EditorIcons")));
|
|
accept_button->set_icon(get_theme_icon(SNAME("ImportCheck"), SNAME("EditorIcons")));
|
|
accept_button->set_icon(get_theme_icon(SNAME("ImportCheck"), SNAME("EditorIcons")));
|
|
@@ -404,7 +402,6 @@ void EditorPropertyLocale::setup(const String &p_hint_text) {
|
|
|
|
|
|
void EditorPropertyLocale::_notification(int p_what) {
|
|
void EditorPropertyLocale::_notification(int p_what) {
|
|
switch (p_what) {
|
|
switch (p_what) {
|
|
- case NOTIFICATION_ENTER_TREE:
|
|
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
locale_edit->set_icon(get_theme_icon(SNAME("Translation"), SNAME("EditorIcons")));
|
|
locale_edit->set_icon(get_theme_icon(SNAME("Translation"), SNAME("EditorIcons")));
|
|
} break;
|
|
} break;
|
|
@@ -500,7 +497,6 @@ void EditorPropertyPath::set_save_mode() {
|
|
|
|
|
|
void EditorPropertyPath::_notification(int p_what) {
|
|
void EditorPropertyPath::_notification(int p_what) {
|
|
switch (p_what) {
|
|
switch (p_what) {
|
|
- case NOTIFICATION_ENTER_TREE:
|
|
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
path_edit->set_icon(get_theme_icon(SNAME("Folder"), SNAME("EditorIcons")));
|
|
path_edit->set_icon(get_theme_icon(SNAME("Folder"), SNAME("EditorIcons")));
|
|
} break;
|
|
} break;
|
|
@@ -1153,7 +1149,6 @@ void EditorPropertyLayersGrid::_bind_methods() {
|
|
|
|
|
|
void EditorPropertyLayers::_notification(int p_what) {
|
|
void EditorPropertyLayers::_notification(int p_what) {
|
|
switch (p_what) {
|
|
switch (p_what) {
|
|
- case NOTIFICATION_ENTER_TREE:
|
|
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
button->set_normal_texture(get_theme_icon(SNAME("GuiTabMenuHl"), SNAME("EditorIcons")));
|
|
button->set_normal_texture(get_theme_icon(SNAME("GuiTabMenuHl"), SNAME("EditorIcons")));
|
|
button->set_pressed_texture(get_theme_icon(SNAME("GuiTabMenuHl"), SNAME("EditorIcons")));
|
|
button->set_pressed_texture(get_theme_icon(SNAME("GuiTabMenuHl"), SNAME("EditorIcons")));
|
|
@@ -1677,8 +1672,7 @@ void EditorPropertyEasing::setup(bool p_positive_only, bool p_flip) {
|
|
|
|
|
|
void EditorPropertyEasing::_notification(int p_what) {
|
|
void EditorPropertyEasing::_notification(int p_what) {
|
|
switch (p_what) {
|
|
switch (p_what) {
|
|
- case NOTIFICATION_THEME_CHANGED:
|
|
|
|
- case NOTIFICATION_ENTER_TREE: {
|
|
|
|
|
|
+ case NOTIFICATION_THEME_CHANGED: {
|
|
preset->clear();
|
|
preset->clear();
|
|
preset->add_icon_item(get_theme_icon(SNAME("CurveLinear"), SNAME("EditorIcons")), "Linear", EASING_LINEAR);
|
|
preset->add_icon_item(get_theme_icon(SNAME("CurveLinear"), SNAME("EditorIcons")), "Linear", EASING_LINEAR);
|
|
preset->add_icon_item(get_theme_icon(SNAME("CurveIn"), SNAME("EditorIcons")), "Ease In", EASING_IN);
|
|
preset->add_icon_item(get_theme_icon(SNAME("CurveIn"), SNAME("EditorIcons")), "Ease In", EASING_IN);
|
|
@@ -1775,7 +1769,6 @@ void EditorPropertyVector2::_update_ratio() {
|
|
|
|
|
|
void EditorPropertyVector2::_notification(int p_what) {
|
|
void EditorPropertyVector2::_notification(int p_what) {
|
|
switch (p_what) {
|
|
switch (p_what) {
|
|
- case NOTIFICATION_ENTER_TREE:
|
|
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
linked->set_normal_texture(get_theme_icon(SNAME("Unlinked"), SNAME("EditorIcons")));
|
|
linked->set_normal_texture(get_theme_icon(SNAME("Unlinked"), SNAME("EditorIcons")));
|
|
linked->set_pressed_texture(get_theme_icon(SNAME("Instance"), SNAME("EditorIcons")));
|
|
linked->set_pressed_texture(get_theme_icon(SNAME("Instance"), SNAME("EditorIcons")));
|
|
@@ -1885,7 +1878,6 @@ void EditorPropertyRect2::update_property() {
|
|
|
|
|
|
void EditorPropertyRect2::_notification(int p_what) {
|
|
void EditorPropertyRect2::_notification(int p_what) {
|
|
switch (p_what) {
|
|
switch (p_what) {
|
|
- case NOTIFICATION_ENTER_TREE:
|
|
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
const Color *colors = _get_property_colors();
|
|
const Color *colors = _get_property_colors();
|
|
for (int i = 0; i < 4; i++) {
|
|
for (int i = 0; i < 4; i++) {
|
|
@@ -2053,7 +2045,6 @@ Vector3 EditorPropertyVector3::get_vector() {
|
|
|
|
|
|
void EditorPropertyVector3::_notification(int p_what) {
|
|
void EditorPropertyVector3::_notification(int p_what) {
|
|
switch (p_what) {
|
|
switch (p_what) {
|
|
- case NOTIFICATION_ENTER_TREE:
|
|
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
linked->set_normal_texture(get_theme_icon(SNAME("Unlinked"), SNAME("EditorIcons")));
|
|
linked->set_normal_texture(get_theme_icon(SNAME("Unlinked"), SNAME("EditorIcons")));
|
|
linked->set_pressed_texture(get_theme_icon(SNAME("Instance"), SNAME("EditorIcons")));
|
|
linked->set_pressed_texture(get_theme_icon(SNAME("Instance"), SNAME("EditorIcons")));
|
|
@@ -2188,7 +2179,6 @@ void EditorPropertyVector2i::_update_ratio() {
|
|
|
|
|
|
void EditorPropertyVector2i::_notification(int p_what) {
|
|
void EditorPropertyVector2i::_notification(int p_what) {
|
|
switch (p_what) {
|
|
switch (p_what) {
|
|
- case NOTIFICATION_ENTER_TREE:
|
|
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
linked->set_normal_texture(get_theme_icon(SNAME("Unlinked"), SNAME("EditorIcons")));
|
|
linked->set_normal_texture(get_theme_icon(SNAME("Unlinked"), SNAME("EditorIcons")));
|
|
linked->set_pressed_texture(get_theme_icon(SNAME("Instance"), SNAME("EditorIcons")));
|
|
linked->set_pressed_texture(get_theme_icon(SNAME("Instance"), SNAME("EditorIcons")));
|
|
@@ -2298,7 +2288,6 @@ void EditorPropertyRect2i::update_property() {
|
|
|
|
|
|
void EditorPropertyRect2i::_notification(int p_what) {
|
|
void EditorPropertyRect2i::_notification(int p_what) {
|
|
switch (p_what) {
|
|
switch (p_what) {
|
|
- case NOTIFICATION_ENTER_TREE:
|
|
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
const Color *colors = _get_property_colors();
|
|
const Color *colors = _get_property_colors();
|
|
for (int i = 0; i < 4; i++) {
|
|
for (int i = 0; i < 4; i++) {
|
|
@@ -2439,7 +2428,6 @@ void EditorPropertyVector3i::_update_ratio() {
|
|
|
|
|
|
void EditorPropertyVector3i::_notification(int p_what) {
|
|
void EditorPropertyVector3i::_notification(int p_what) {
|
|
switch (p_what) {
|
|
switch (p_what) {
|
|
- case NOTIFICATION_ENTER_TREE:
|
|
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
linked->set_normal_texture(get_theme_icon(SNAME("Unlinked"), SNAME("EditorIcons")));
|
|
linked->set_normal_texture(get_theme_icon(SNAME("Unlinked"), SNAME("EditorIcons")));
|
|
linked->set_pressed_texture(get_theme_icon(SNAME("Instance"), SNAME("EditorIcons")));
|
|
linked->set_pressed_texture(get_theme_icon(SNAME("Instance"), SNAME("EditorIcons")));
|
|
@@ -2551,7 +2539,6 @@ void EditorPropertyPlane::update_property() {
|
|
|
|
|
|
void EditorPropertyPlane::_notification(int p_what) {
|
|
void EditorPropertyPlane::_notification(int p_what) {
|
|
switch (p_what) {
|
|
switch (p_what) {
|
|
- case NOTIFICATION_ENTER_TREE:
|
|
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
const Color *colors = _get_property_colors();
|
|
const Color *colors = _get_property_colors();
|
|
for (int i = 0; i < 4; i++) {
|
|
for (int i = 0; i < 4; i++) {
|
|
@@ -2705,7 +2692,6 @@ void EditorPropertyQuaternion::_warning_pressed() {
|
|
|
|
|
|
void EditorPropertyQuaternion::_notification(int p_what) {
|
|
void EditorPropertyQuaternion::_notification(int p_what) {
|
|
switch (p_what) {
|
|
switch (p_what) {
|
|
- case NOTIFICATION_ENTER_TREE:
|
|
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
const Color *colors = _get_property_colors();
|
|
const Color *colors = _get_property_colors();
|
|
for (int i = 0; i < 4; i++) {
|
|
for (int i = 0; i < 4; i++) {
|
|
@@ -2860,7 +2846,6 @@ void EditorPropertyVector4::update_property() {
|
|
|
|
|
|
void EditorPropertyVector4::_notification(int p_what) {
|
|
void EditorPropertyVector4::_notification(int p_what) {
|
|
switch (p_what) {
|
|
switch (p_what) {
|
|
- case NOTIFICATION_ENTER_TREE:
|
|
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
const Color *colors = _get_property_colors();
|
|
const Color *colors = _get_property_colors();
|
|
for (int i = 0; i < 4; i++) {
|
|
for (int i = 0; i < 4; i++) {
|
|
@@ -2952,7 +2937,6 @@ void EditorPropertyVector4i::update_property() {
|
|
|
|
|
|
void EditorPropertyVector4i::_notification(int p_what) {
|
|
void EditorPropertyVector4i::_notification(int p_what) {
|
|
switch (p_what) {
|
|
switch (p_what) {
|
|
- case NOTIFICATION_ENTER_TREE:
|
|
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
const Color *colors = _get_property_colors();
|
|
const Color *colors = _get_property_colors();
|
|
for (int i = 0; i < 4; i++) {
|
|
for (int i = 0; i < 4; i++) {
|
|
@@ -3047,7 +3031,6 @@ void EditorPropertyAABB::update_property() {
|
|
|
|
|
|
void EditorPropertyAABB::_notification(int p_what) {
|
|
void EditorPropertyAABB::_notification(int p_what) {
|
|
switch (p_what) {
|
|
switch (p_what) {
|
|
- case NOTIFICATION_ENTER_TREE:
|
|
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
const Color *colors = _get_property_colors();
|
|
const Color *colors = _get_property_colors();
|
|
for (int i = 0; i < 6; i++) {
|
|
for (int i = 0; i < 6; i++) {
|
|
@@ -3130,7 +3113,6 @@ void EditorPropertyTransform2D::update_property() {
|
|
|
|
|
|
void EditorPropertyTransform2D::_notification(int p_what) {
|
|
void EditorPropertyTransform2D::_notification(int p_what) {
|
|
switch (p_what) {
|
|
switch (p_what) {
|
|
- case NOTIFICATION_ENTER_TREE:
|
|
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
const Color *colors = _get_property_colors();
|
|
const Color *colors = _get_property_colors();
|
|
for (int i = 0; i < 6; i++) {
|
|
for (int i = 0; i < 6; i++) {
|
|
@@ -3227,7 +3209,6 @@ void EditorPropertyBasis::update_property() {
|
|
|
|
|
|
void EditorPropertyBasis::_notification(int p_what) {
|
|
void EditorPropertyBasis::_notification(int p_what) {
|
|
switch (p_what) {
|
|
switch (p_what) {
|
|
- case NOTIFICATION_ENTER_TREE:
|
|
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
const Color *colors = _get_property_colors();
|
|
const Color *colors = _get_property_colors();
|
|
for (int i = 0; i < 9; i++) {
|
|
for (int i = 0; i < 9; i++) {
|
|
@@ -3325,7 +3306,6 @@ void EditorPropertyTransform3D::update_using_transform(Transform3D p_transform)
|
|
|
|
|
|
void EditorPropertyTransform3D::_notification(int p_what) {
|
|
void EditorPropertyTransform3D::_notification(int p_what) {
|
|
switch (p_what) {
|
|
switch (p_what) {
|
|
- case NOTIFICATION_ENTER_TREE:
|
|
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
const Color *colors = _get_property_colors();
|
|
const Color *colors = _get_property_colors();
|
|
for (int i = 0; i < 12; i++) {
|
|
for (int i = 0; i < 12; i++) {
|
|
@@ -3431,7 +3411,6 @@ void EditorPropertyProjection::update_using_transform(Projection p_transform) {
|
|
|
|
|
|
void EditorPropertyProjection::_notification(int p_what) {
|
|
void EditorPropertyProjection::_notification(int p_what) {
|
|
switch (p_what) {
|
|
switch (p_what) {
|
|
- case NOTIFICATION_ENTER_TREE:
|
|
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
const Color *colors = _get_property_colors();
|
|
const Color *colors = _get_property_colors();
|
|
for (int i = 0; i < 16; i++) {
|
|
for (int i = 0; i < 16; i++) {
|
|
@@ -3502,7 +3481,6 @@ void EditorPropertyColor::_picker_opening() {
|
|
|
|
|
|
void EditorPropertyColor::_notification(int p_what) {
|
|
void EditorPropertyColor::_notification(int p_what) {
|
|
switch (p_what) {
|
|
switch (p_what) {
|
|
- case NOTIFICATION_ENTER_TREE:
|
|
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
picker->set_custom_minimum_size(Size2(0, get_theme_constant(SNAME("color_picker_button_height"), SNAME("Editor"))));
|
|
picker->set_custom_minimum_size(Size2(0, get_theme_constant(SNAME("color_picker_button_height"), SNAME("Editor"))));
|
|
} break;
|
|
} break;
|
|
@@ -3726,7 +3704,6 @@ void EditorPropertyNodePath::setup(const NodePath &p_base_hint, Vector<StringNam
|
|
|
|
|
|
void EditorPropertyNodePath::_notification(int p_what) {
|
|
void EditorPropertyNodePath::_notification(int p_what) {
|
|
switch (p_what) {
|
|
switch (p_what) {
|
|
- case NOTIFICATION_ENTER_TREE:
|
|
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
Ref<Texture2D> t = get_theme_icon(SNAME("Clear"), SNAME("EditorIcons"));
|
|
Ref<Texture2D> t = get_theme_icon(SNAME("Clear"), SNAME("EditorIcons"));
|
|
clear->set_icon(t);
|
|
clear->set_icon(t);
|
|
@@ -4138,7 +4115,6 @@ void EditorPropertyResource::set_use_sub_inspector(bool p_enable) {
|
|
|
|
|
|
void EditorPropertyResource::_notification(int p_what) {
|
|
void EditorPropertyResource::_notification(int p_what) {
|
|
switch (p_what) {
|
|
switch (p_what) {
|
|
- case NOTIFICATION_ENTER_TREE:
|
|
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
if (!updating_theme) {
|
|
if (!updating_theme) {
|
|
_update_property_bg();
|
|
_update_property_bg();
|