Fixed an issue where theme names in the theme downloader could get abbreviated

This commit is contained in:
Leon Styhre 2024-08-20 17:49:53 +02:00
parent 8689b3aecf
commit 7e9590d7c3

View file

@ -770,7 +770,7 @@ void GuiThemeDownloader::populateGUI()
ThemeGUIEntry guiEntry;
guiEntry.themeName = themeNameElement;
mThemeGUIEntries.emplace_back(guiEntry);
row.addElement(themeNameElement, false);
row.addElement(themeNameElement, false, true, glm::ivec2 {1, 0});
row.makeAcceptInputHandler([this, &theme] {
std::promise<bool>().swap(mPromise);