Disabled showing tutorial window on the first start

This commit is contained in:
pelya
2017-03-29 20:34:02 +03:00
committed by Sergii Pylypenko
parent 69306ed1d8
commit 63850a3172

View File

@@ -208,6 +208,8 @@ void ShowTutorialWindow()
void ShowTutorialWindowOnceAfterInstall()
{
// Close button on tutorial window is gone, so don't show that windows on first run, it's confusing
#if 0
static const char * TUTORIAL_SHOWN_FLAG = ".tutorial-shown-3.flag";
FILE *ff = fopen(TUTORIAL_SHOWN_FLAG, "r");
@@ -221,4 +223,5 @@ void ShowTutorialWindowOnceAfterInstall()
fprintf(ff, "Tutorial shown");
fclose(ff);
ShowTutorialWindow();
#endif
}