diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-04-04 00:21:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-04 00:21:12 +0200 |
commit | 4d3ed11212c779a1c340916dee47b2021382047f (patch) | |
tree | d8842c2c8ab02d868f9b85e434ad73c3da153b05 /scene/gui/patch_9_rect.cpp | |
parent | 6fc1a88ea1c669276bb195278dbe8c3e03d6e59e (diff) | |
parent | 0a287cfe4cfe721b3909e9722023c3d469afa886 (diff) | |
download | redot-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.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 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; } } |