diff options
author | Andreas Haas <liu.gam3@gmail.com> | 2017-04-03 18:34:44 +0200 |
---|---|---|
committer | Andreas Haas <liu.gam3@gmail.com> | 2017-04-03 18:35:15 +0200 |
commit | 0a287cfe4cfe721b3909e9722023c3d469afa886 (patch) | |
tree | 40752b51ea85d4f3e5502f41df41432787615e24 /scene/gui/patch_9_rect.cpp | |
parent | ff468e2d4247fc5fc52aea866f72dc4e5b9e6815 (diff) | |
download | redot-engine-0a287cfe4cfe721b3909e9722023c3d469afa886.tar.gz |
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.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scene/gui/patch_9_rect.cpp b/scene/gui/patch_9_rect.cpp index d0bd45e435..b3a2ed06e8 100644 --- a/scene/gui/patch_9_rect.cpp +++ b/scene/gui/patch_9_rect.cpp @@ -116,16 +116,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; } } |