From 7e9590d7c385f1230407958c671b189f74063ff7 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Tue, 20 Aug 2024 17:49:53 +0200 Subject: [PATCH] Fixed an issue where theme names in the theme downloader could get abbreviated --- es-app/src/guis/GuiThemeDownloader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/es-app/src/guis/GuiThemeDownloader.cpp b/es-app/src/guis/GuiThemeDownloader.cpp index 3ed5db717..87a94ea12 100644 --- a/es-app/src/guis/GuiThemeDownloader.cpp +++ b/es-app/src/guis/GuiThemeDownloader.cpp @@ -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().swap(mPromise);