Compare commits
2 Commits
9ff614095f
...
4b4831317a
Author | SHA1 | Date | |
---|---|---|---|
4b4831317a | |||
e015c4e4c7 |
@ -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
|
||||||
|
@ -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();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user