In Qt5, my two favorite styles "clearlooks" 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 a36fdd246c
2 changed files with 4 additions and 4 deletions

View File

@ -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 ^^^^^^^^^^
#===================================================

View File

@ -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 ^^^^^^^^^^
#===================================================