mirror of
https://github.com/processing/processing4.git
synced 2026-02-11 17:40:48 +01:00
change up the error message for the settings folder
This commit is contained in:
@@ -1888,8 +1888,10 @@ public class Base {
|
||||
}
|
||||
}
|
||||
} catch (Exception e) {
|
||||
Messages.showError("Problem getting the settings folder",
|
||||
"Error getting the Processing the settings folder.", e);
|
||||
Messages.showTrace("An rare and unknowable thing happened",
|
||||
"Could not get the settings folder. Please report:\n" +
|
||||
"http://github.com/processing/processing/issues/new",
|
||||
e, true);
|
||||
}
|
||||
return settingsFolder;
|
||||
}
|
||||
|
||||
@@ -156,7 +156,7 @@ public class Messages {
|
||||
* Testing a new warning window that includes the stack trace.
|
||||
*/
|
||||
static public void showTrace(String title, String message,
|
||||
Throwable t, boolean fatal) {
|
||||
Throwable t, boolean fatal) {
|
||||
if (title == null) title = fatal ? "Error" : "Warning";
|
||||
|
||||
if (Base.isCommandLine()) {
|
||||
|
||||
Reference in New Issue
Block a user