In Qt5, my two favorite styles "cleanlooks" and "motif" are not supported.

This refs #15.
This commit is contained in:
Kazunari Sekigawa 2018-01-05 20:38:10 +09:00
parent ecade95463
commit 356ac4f421
2 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@
# File: KLayoutEditor.sh # File: KLayoutEditor.sh
# #
# Descriptions: # 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. # in "editor" mode.
# #
# You may specify style and other options as you like by setting # 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 # Pass command line parameters to klayout
# vvvvvvvvvv You may edit the block below vvvvvvvvvv # vvvvvvvvvv You may edit the block below vvvvvvvvvv
opt_mode="-e" opt_mode="-e"
opt_style="-style=cleanlooks" opt_style="-style=fusion"
opt_others="" opt_others=""
# ^^^^^^^^^^ You may edit the block above ^^^^^^^^^^ # ^^^^^^^^^^ You may edit the block above ^^^^^^^^^^
#=================================================== #===================================================

View File

@ -3,7 +3,7 @@
# File: KLayoutViewer.sh # File: KLayoutViewer.sh
# #
# Descriptions: # 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. # in "viewer" mode.
# #
# You may specify style and other options as you like by setting # 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 # Pass command line parameters to klayout
# vvvvvvvvvv You may edit the block below vvvvvvvvvv # vvvvvvvvvv You may edit the block below vvvvvvvvvv
opt_mode="-ne" opt_mode="-ne"
opt_style="-style=motif" opt_style="-style=windows"
opt_others="" opt_others=""
# ^^^^^^^^^^ You may edit the block above ^^^^^^^^^^ # ^^^^^^^^^^ You may edit the block above ^^^^^^^^^^
#=================================================== #===================================================