mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-16 07:14:09 +02:00
commit
73d3e0f5e2
4 changed files with 353 additions and 0 deletions
|
@ -1744,6 +1744,8 @@ namespace IDE
|
|||
continue;
|
||||
if (tabWidget.mContent is WelcomePanel)
|
||||
continue;
|
||||
if (tabWidget.mContent is StartupPanel)
|
||||
continue;
|
||||
}
|
||||
|
||||
using (data.CreateObject())
|
||||
|
@ -12385,6 +12387,9 @@ namespace IDE
|
|||
|
||||
if ((mIsFirstRun) && (!mWorkspace.IsInitialized))
|
||||
ShowWelcome();
|
||||
|
||||
if ((mSettings.mUISettings.mShowStartupPanel) && (!mIsFirstRun) && (!mWorkspace.IsInitialized))
|
||||
ShowStartup();
|
||||
}
|
||||
#endif
|
||||
void ShowWelcome()
|
||||
|
@ -12395,6 +12400,14 @@ namespace IDE
|
|||
tabButton.Activate();
|
||||
}
|
||||
|
||||
void ShowStartup()
|
||||
{
|
||||
StartupPanel startupPanel = new .();
|
||||
TabbedView tabbedView = GetDefaultDocumentTabbedView();
|
||||
let tabButton = SetupTab(tabbedView, "Startup", 0, startupPanel, true);
|
||||
tabButton.Activate();
|
||||
}
|
||||
|
||||
public void CheckLoadConfig()
|
||||
{
|
||||
if (mBeefConfig.mLibsChanged)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue