summaryrefslogtreecommitdiffstats
path: root/scene/gui/patch_9_rect.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2017-04-04 00:21:12 +0200
committerGitHub <noreply@github.com>2017-04-04 00:21:12 +0200
commit4d3ed11212c779a1c340916dee47b2021382047f (patch)
treed8842c2c8ab02d868f9b85e434ad73c3da153b05 /scene/gui/patch_9_rect.cpp
parent6fc1a88ea1c669276bb195278dbe8c3e03d6e59e (diff)
parent0a287cfe4cfe721b3909e9722023c3d469afa886 (diff)
downloadredot-engine-4d3ed11212c779a1c340916dee47b2021382047f.tar.gz
Merge pull request #8248 from Hinsbart/fix_notify_renames
Fix more property names in _change_notify calls.
Diffstat (limited to 'scene/gui/patch_9_rect.cpp')
-rw-r--r--scene/gui/patch_9_rect.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/scene/gui/patch_9_rect.cpp b/scene/gui/patch_9_rect.cpp
index f53036085f..e1ac2be7e6 100644
--- a/scene/gui/patch_9_rect.cpp
+++ b/scene/gui/patch_9_rect.cpp
@@ -102,16 +102,16 @@ void NinePatchRect::set_patch_margin(Margin p_margin, int p_size) {
minimum_size_changed();
switch (p_margin) {
case MARGIN_LEFT:
- _change_notify("patch_margin/left");
+ _change_notify("patch_margin_left");
break;
case MARGIN_TOP:
- _change_notify("patch_margin/top");
+ _change_notify("patch_margin_top");
break;
case MARGIN_RIGHT:
- _change_notify("patch_margin/right");
+ _change_notify("patch_margin_right");
break;
case MARGIN_BOTTOM:
- _change_notify("patch_margin/bottom");
+ _change_notify("patch_margin_bottom");
break;
}
}