Skip to content

Commit

Permalink
Bug 3147 related small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Valentin Georgiev committed May 14, 2012
1 parent 3ab11ce commit 1df85d4
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -413,7 +413,7 @@ public boolean accept(File dir, String name) {
if (OS.startsWith("Mac")) { // the default plotting device on Mac(Quartz) is not working good with StatET
eval("options(device='x11')");
String tcltk = eval("loadNamespace(\"tcltk\")");
if (!tcltk.contains("Warning message:")) {
if (tcltk.contains("Warning message:")) {
tcltkStatus = false;
status += NEWLINE + NEWLINE + "WARNING!" + NEWLINE +
"Tcl/Tk for X11 was not found on your system." + NEWLINE +
Expand Down

0 comments on commit 1df85d4

Please sign in to comment.