ide: Changing reload message boxes activation settings to 'flash'
[sdk] / ide / src / ide.ec
index 2c06b0a..6238aaa 100644 (file)
@@ -1829,7 +1829,7 @@ class IDEWorkSpace : Window
       char temp[4096];
       sprintf(temp, $"The document %s was modified by another application.\n"
             "Would you like to reload it and lose your changes?", this.fileName);
-      if(MessageBox { type = yesNo, master = this/*.parent*/,
+      if(MessageBox { creationActivation = flash, type = yesNo, master = this/*.parent*/,
             text = $"Document has been modified", contents = temp }.Modal() == yes)
       {
          bool noParsing = (this._class == class(CodeEditor) && ((CodeEditor)this).noParsing) ? true : false;