summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMatthias Melcher <github@matthiasm.com>2023-12-16 21:59:39 +0100
committerMatthias Melcher <github@matthiasm.com>2023-12-16 21:59:43 +0100
commit469d3ef3d5e9bc27eb5cd0ef6532f89568604572 (patch)
tree3a76a496fc53c2d50ab21f1d961b75a54fa1f7c6 /test
parent638e762d3ebdb0b2e736e1deecaa7d86529fc1e5 (diff)
#842: Enables command line color arguments on macOS
Diffstat (limited to 'test')
-rw-r--r--test/hello.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/hello.cxx b/test/hello.cxx
index 299d58098..d7308cd78 100644
--- a/test/hello.cxx
+++ b/test/hello.cxx
@@ -26,6 +26,6 @@ int main(int argc, char **argv) {
box->labelsize(36);
box->labeltype(FL_SHADOW_LABEL);
window->end();
- window->show();//argc, argv);
+ window->show(argc, argv);
return Fl::run();
}