mirror of
https://github.com/Drezil/imgui.git
synced 2025-08-02 10:03:13 +02:00
Removed inline marker #210
This commit is contained in:
@ -7800,8 +7800,7 @@ void ImGui::Columns(int columns_count, const char* id, bool border)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void ImGui::Indent()
|
||||||
inline void ImGui::Indent()
|
|
||||||
{
|
{
|
||||||
ImGuiState& g = *GImGui;
|
ImGuiState& g = *GImGui;
|
||||||
ImGuiWindow* window = GetCurrentWindow();
|
ImGuiWindow* window = GetCurrentWindow();
|
||||||
@ -7809,7 +7808,7 @@ inline void ImGui::Indent()
|
|||||||
window->DC.CursorPos.x = window->Pos.x + window->DC.ColumnsStartX + window->DC.ColumnsOffsetX;
|
window->DC.CursorPos.x = window->Pos.x + window->DC.ColumnsStartX + window->DC.ColumnsOffsetX;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline void ImGui::Unindent()
|
void ImGui::Unindent()
|
||||||
{
|
{
|
||||||
ImGuiState& g = *GImGui;
|
ImGuiState& g = *GImGui;
|
||||||
ImGuiWindow* window = GetCurrentWindow();
|
ImGuiWindow* window = GetCurrentWindow();
|
||||||
|
Reference in New Issue
Block a user