Skip to content
Merged
Changes from all commits
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
12 changes: 6 additions & 6 deletions IDE/src/IDEApp.bf
Original file line number Diff line number Diff line change
Expand Up @@ -12917,13 +12917,8 @@ namespace IDE

mGitManager.Init();

#if BF_PLATFORM_LINUX
let icon = (Span<uint8>)cAppIcon;
BFApp_RegisterAppIcon(icon.Ptr, icon.Length);

#if LINUX_PACKAGE
#if BF_PLATFORM_LINUX && LINUX_PACKAGE
mUserDataDir = new $"{Environment.GetEnvironmentVariable("HOME", .. scope .())}/.config/beeflang/";
#endif
#endif

//Yoop();
Expand Down Expand Up @@ -13123,6 +13118,11 @@ namespace IDE
flags, mMainFrame);
}

#if BF_PLATFORM_LINUX
let icon = (Span<uint8>)cAppIcon;
BFApp_RegisterAppIcon(icon.Ptr, icon.Length);
#endif

if (mIsFirstRun)
{
// If this is our first time running, set up a scale based on DPI
Expand Down
Loading