Branimir Karadžić 10 years ago
parent
commit
b57dadc1b1
1 changed files with 2 additions and 2 deletions
  1. 2 2
      examples/common/imgui/imgui.cpp

+ 2 - 2
examples/common/imgui/imgui.cpp

@@ -3417,12 +3417,12 @@ bool imguiCheck(const char* _text, bool _checked, bool _enabled)
 
 
 bool imguiBool(const char* _text, bool& _flag, bool _enabled)
 bool imguiBool(const char* _text, bool& _flag, bool _enabled)
 {
 {
-    bool result = imguiCheck(_text, _flag, _enabled);
+	bool result = imguiCheck(_text, _flag, _enabled);
 	if (result)
 	if (result)
 	{
 	{
 		_flag = !_flag;
 		_flag = !_flag;
 	}
 	}
-    return result;
+	return result;
 }
 }
 
 
 bool imguiCollapse(const char* _text, const char* _subtext, bool _checked, bool _enabled)
 bool imguiCollapse(const char* _text, const char* _subtext, bool _checked, bool _enabled)