Move History dock to the bottom left by default.

This commit is contained in:
Lukas Tenbrink
2025-11-20 21:24:51 +01:00
parent bbe9654327
commit de18f3200e
2 changed files with 3 additions and 3 deletions

View File

@ -239,7 +239,7 @@ HistoryDock::HistoryDock() {
set_name(TTRC("History"));
set_icon_name("History");
set_dock_shortcut(ED_SHORTCUT_AND_COMMAND("docks/open_history", TTRC("Open History Dock")));
set_default_slot(DockConstants::DOCK_SLOT_RIGHT_UL);
set_default_slot(DockConstants::DOCK_SLOT_LEFT_BR);
ur_manager = EditorUndoRedoManager::get_singleton();
ur_manager->connect("history_changed", callable_mp(this, &HistoryDock::on_history_changed));