Skip to content

Add toolbar to file browser #23874

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Feb 22, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Draw table headers using DrawTextEllipsised to account for long labels
  • Loading branch information
AaronVanGeffen committed Feb 22, 2025
commit 1b7f960ebd22475104ddb803e427d972bb071498
4 changes: 3 additions & 1 deletion src/openrct2-ui/windows/LoadSave.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,9 @@ namespace OpenRCT2::Ui::Windows
ft.Add<StringId>(indicatorId);

auto cdpi = const_cast<const DrawPixelInfo&>(dpi);
DrawTextBasic(cdpi, windowPos + ScreenCoordsXY{ widget.left + 5, widget.top + 1 }, strId, ft, { COLOUR_GREY });
DrawTextEllipsised(
cdpi, windowPos + ScreenCoordsXY{ widget.left + 5, widget.top + 1 }, widget.width(), strId, ft,
{ COLOUR_GREY });
};

auto& config = Config::Get().general;
Expand Down