Skip to content

Commit

Permalink
Fixed Dockable keeps redrawing
Browse files Browse the repository at this point in the history
  • Loading branch information
Neko-Box-Coder committed May 7, 2023
1 parent 566a26b commit 7391b5e
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions Src/ssGUI/Extensions/Dockable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,6 @@ namespace Extensions
DockPreivewLeft->Delete();
DockPreivewLeft = nullptr;
}
Container->RedrawObject();
}

void Dockable::DiscardTopPreview()
Expand All @@ -211,7 +210,6 @@ namespace Extensions
DockPreivewTop->Delete();
DockPreivewTop = nullptr;
}
Container->RedrawObject();
}

void Dockable::DiscardRightPreview()
Expand All @@ -221,7 +219,6 @@ namespace Extensions
DockPreivewRight->Delete();
DockPreivewRight = nullptr;
}
Container->RedrawObject();
}

void Dockable::DiscardBottomPreview()
Expand All @@ -231,7 +228,6 @@ namespace Extensions
DockPreivewBottom->Delete();
DockPreivewBottom = nullptr;
}
Container->RedrawObject();
}


Expand Down Expand Up @@ -618,8 +614,6 @@ namespace Extensions
DockTriggerLeft->Delete();
DockTriggerLeft = nullptr;
}

Container->RedrawObject();
}

const std::string Dockable::EXTENSION_NAME = "Dockable";
Expand Down

0 comments on commit 7391b5e

Please sign in to comment.