fix: build on Linux

fix: missing skip in prefs
This commit is contained in:
ZavaruKitsu 2023-09-07 22:05:46 +03:00
parent a7666b1156
commit ba93a50062
2 changed files with 5 additions and 0 deletions

View file

@ -923,6 +923,7 @@ namespace Settings
AddSkip(container);
AddDivider(container);
AddSkip(container);
SetupExperimental(container, controller);
AddDividerText(container, tr::ayu_SettingsWatermark());

View file

@ -4,6 +4,8 @@
// but be respectful and credit the original author.
//
// Copyright @Radolyn, 2023
#ifdef Q_OS_WIN
#include "windows_utils.h"
#include <ShlObj_core.h>
@ -44,3 +46,5 @@ void reloadAppIconFromTaskBar() {
SHChangeNotify(SHCNE_ASSOCCHANGED, SHCNF_IDLIST, NULL, NULL);
}
}
#endif