Untabifiy
diff --git a/imgui.cpp b/imgui.cpp
index 2536947..231befa 100644
--- a/imgui.cpp
+++ b/imgui.cpp
@@ -6525,8 +6525,8 @@
     ImGuiTextEditState& edit_state = g.InputTextState;
 
     const bool is_ctrl_down = io.KeyCtrl;
-		const bool is_shift_down = io.KeyShift;
-		const bool is_alt_down = io.KeyAlt;
+    const bool is_shift_down = io.KeyShift;
+    const bool is_alt_down = io.KeyAlt;
     const bool focus_requested = window->FocusItemRegister(g.ActiveId == id, (flags & ImGuiInputTextFlags_CallbackCompletion) == 0);    // Using completion callback disable keyboard tabbing
     const bool focus_requested_by_code = focus_requested && (window->FocusIdxAllCounter == window->FocusIdxAllRequestCurrent);
     const bool focus_requested_by_tab = focus_requested && !focus_requested_by_code;
diff --git a/imgui.h b/imgui.h
index 7bcd30d..347aaff 100644
--- a/imgui.h
+++ b/imgui.h
@@ -358,7 +358,7 @@
     IMGUI_API void          ListBoxFooter();                                                    // terminate the scrolling region
 
     // Widgets: Menus
-	// FIXME-WIP: v1.39 in development
+    // FIXME-WIP: v1.39 in development
     IMGUI_API bool          MenuItem(const char* label, const char* shortcut = NULL, bool selected = false); // bool enabled = true
     IMGUI_API bool          MenuItem(const char* label, const char* shortcut, bool* p_selected); // bool enabled = true