Compare commits

...

2 Commits

Author SHA1 Message Date
4b4831317a [nostalgia] Update release notes
Some checks failed
Build / build (push) Has been cancelled
2025-05-08 23:28:05 -05:00
e015c4e4c7 [studio] Remove ability to re-order Editor tabs 2025-05-08 23:27:11 -05:00
2 changed files with 4 additions and 1 deletions

View File

@ -1,13 +1,16 @@
# d2025.05.0 # d2025.05.0
* Add app icon for both window and file * Add app icon for both window and file
* Change application font to Roboto Medium
* Closing application will now confirm with user if any files have unsaved * Closing application will now confirm with user if any files have unsaved
changes. changes.
* UUID duplicates will now be reported when opening a project * UUID duplicates will now be reported when opening a project
* Deleting a directory now closes files in that directory * Deleting a directory now closes files in that directory
* Delete key now initiates deletion of selected directory * Delete key now initiates deletion of selected directory
* Remove ability to re-order tabs. There were bugs associated with that.
* TileSheetEditor: Fix selection clearing in to work when clicking outside * TileSheetEditor: Fix selection clearing in to work when clicking outside
image. image.
* TileSheetEditor: Fix Delete Tile functionality, which was completely broken
* PaletteEditor: Fix color number key range in. Previously, pressing A caused * PaletteEditor: Fix color number key range in. Previously, pressing A caused
the editor to jump to the last color. the editor to jump to the last color.
* PaletteEditor: page rename will now take effect upon pressing enter if the * PaletteEditor: page rename will now take effect upon pressing enter if the

View File

@ -255,7 +255,7 @@ void StudioUI::drawMenu() noexcept {
void StudioUI::drawTabBar() noexcept { void StudioUI::drawTabBar() noexcept {
auto const viewport = ImGui::GetContentRegionAvail(); auto const viewport = ImGui::GetContentRegionAvail();
ImGui::BeginChild("TabWindow##MainWindow##Studio", ImVec2(viewport.x, viewport.y)); ImGui::BeginChild("TabWindow##MainWindow##Studio", ImVec2(viewport.x, viewport.y));
constexpr auto tabBarFlags = ImGuiTabBarFlags_Reorderable | ImGuiTabBarFlags_TabListPopupButton; constexpr auto tabBarFlags = ImGuiTabBarFlags_TabListPopupButton;
if (ImGui::BeginTabBar("TabBar##TabWindow##MainWindow##Studio", tabBarFlags)) { if (ImGui::BeginTabBar("TabBar##TabWindow##MainWindow##Studio", tabBarFlags)) {
drawTabs(); drawTabs();
ImGui::EndTabBar(); ImGui::EndTabBar();