From 356ac4f421effbe7cdc4e61700077031ba142ecb Mon Sep 17 00:00:00 2001 From: Kazunari Sekigawa Date: Fri, 5 Jan 2018 20:38:10 +0900 Subject: [PATCH] In Qt5, my two favorite styles "cleanlooks" and "motif" are not supported. This refs #15. --- macbuild/Resources/KLayoutEditor.sh | 4 ++-- macbuild/Resources/KLayoutViewer.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/macbuild/Resources/KLayoutEditor.sh b/macbuild/Resources/KLayoutEditor.sh index e566d0d8f..96f2c4c2d 100755 --- a/macbuild/Resources/KLayoutEditor.sh +++ b/macbuild/Resources/KLayoutEditor.sh @@ -3,7 +3,7 @@ # File: KLayoutEditor.sh # # Descriptions: -# This is to invoke "klayout" distributed as a binary package for Mac +# This is to invoke "klayout" with Qt5 distributed as a binary package for Mac # in "editor" mode. # # You may specify style and other options as you like by setting @@ -19,7 +19,7 @@ myKLayout="open -n -a /Applications/klayout.app --args " # Pass command line parameters to klayout # vvvvvvvvvv You may edit the block below vvvvvvvvvv opt_mode="-e" -opt_style="-style=cleanlooks" +opt_style="-style=fusion" opt_others="" # ^^^^^^^^^^ You may edit the block above ^^^^^^^^^^ #=================================================== diff --git a/macbuild/Resources/KLayoutViewer.sh b/macbuild/Resources/KLayoutViewer.sh index 3eb1fdbe0..d0fa2c038 100755 --- a/macbuild/Resources/KLayoutViewer.sh +++ b/macbuild/Resources/KLayoutViewer.sh @@ -3,7 +3,7 @@ # File: KLayoutViewer.sh # # Descriptions: -# This is to invoke "klayout" distributed as a binary package for Mac +# This is to invoke "klayout" with Qt5 distributed as a binary package for Mac # in "viewer" mode. # # You may specify style and other options as you like by setting @@ -19,7 +19,7 @@ myKLayout="open -n -a /Applications/klayout.app --args " # Pass command line parameters to klayout # vvvvvvvvvv You may edit the block below vvvvvvvvvv opt_mode="-ne" -opt_style="-style=motif" +opt_style="-style=windows" opt_others="" # ^^^^^^^^^^ You may edit the block above ^^^^^^^^^^ #===================================================