summaryrefslogtreecommitdiffstats
path: root/tools/editor/property_editor.cpp
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2015-08-29 13:02:56 -0300
committerJuan Linietsky <reduzio@gmail.com>2015-08-29 13:02:56 -0300
commit1fecba6b5bca276054a26562402cc329ce3dff5b (patch)
treec496fc33cbd5489feeabfd7b8ce8bd976893fa43 /tools/editor/property_editor.cpp
parent3a59747c6292265a2a7ac60720e7d8401b02d77d (diff)
downloadredot-engine-1fecba6b5bca276054a26562402cc329ce3dff5b.tar.gz
-added hints to sprite v/hframes, fixes truncation problem
-removed an error being printed often unnecesarly about missing child
Diffstat (limited to 'tools/editor/property_editor.cpp')
-rw-r--r--tools/editor/property_editor.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/editor/property_editor.cpp b/tools/editor/property_editor.cpp
index 7e367e17b8..b513e32c13 100644
--- a/tools/editor/property_editor.cpp
+++ b/tools/editor/property_editor.cpp
@@ -2403,8 +2403,10 @@ void PropertyEditor::update_tree() {
item->set_cell_mode( 1, TreeItem::CELL_MODE_RANGE );
+ if (p.hint==PROPERTY_HINT_SPRITE_FRAME) {
+ item->set_range_config(1,0,99999,1);
- if (p.hint==PROPERTY_HINT_RANGE || p.hint==PROPERTY_HINT_EXP_RANGE) {
+ } else if (p.hint==PROPERTY_HINT_RANGE || p.hint==PROPERTY_HINT_EXP_RANGE) {
int c = p.hint_string.get_slice_count(",");
float min=0,max=100,step=1;