Hi, qcad3 test opens well, but now that i buy qcad3 profesional open with a ugly theme of qt4, and i want the default theme, i think is clearlooks.
Thanks.
QCAD3 opens with "plastique" and I want clearlook [SOLVED]
Moderator: andrew
Forum rules
Always indicate Operating system, QCAD version
Attach Drawing files, Screenshots
Always indicate Operating system, QCAD version
Attach Drawing files, Screenshots
QCAD3 opens with "plastique" and I want clearlook [SOLVED]
- Attachments
-
- qcad3-ugly.png (80.71 KiB) Viewed 6107 times
Re: Qcad3 profesional open with "plastique" and I want clear
You can try different styles with the -style option:
./qcad -style cleanlooks
Note that some styles crash on 64bit Linux systems. If you are using a 64bit Linux, the start-up script file 'qcad' forces the style to 'plastique'. To try a different style on a 64bit Linux system, start the QCAD binary directly:
To try other styles, replace 'cleanlooks' with: cde, plastique, gtk, motif, windows, windowsvista, windowsxp
./qcad -style cleanlooks
Note that some styles crash on 64bit Linux systems. If you are using a 64bit Linux, the start-up script file 'qcad' forces the style to 'plastique'. To try a different style on a 64bit Linux system, start the QCAD binary directly:
Code: Select all
cd ~/opt/qcad-3.0.0-prof-linux
LD_LIBRARY_PATH=. ./qcad-bin -style cleanlooks
Re: Qcad3 profesional open with "plastique" and I want clear
Thanks Andrew, but how I can set plastique to default?
I'm using a 32bit Ubuntu OS
I'm using a 32bit Ubuntu OS
Re: Qcad3 profesional open with "plastique" and I want clear
You could either:
- change the start-up script 'qcad' (last line):
LD_LIBRARY_PATH="$DIR" "$binary" -style plastique $OPT1 $OPT2 "[email protected]"
or
- create an alias for qcad -> qcad -style plastique
or
- create your own wrapper script
- change the start-up script 'qcad' (last line):
LD_LIBRARY_PATH="$DIR" "$binary" -style plastique $OPT1 $OPT2 "[email protected]"
or
- create an alias for qcad -> qcad -style plastique
or
- create your own wrapper script
Re: Qcad3 profesional open with "plastique" and I want clear
Hi Andrew,
With your code didn't work, but it works adding gtk in the option 2. See capture 1: don't work, and capture 2: OK.
Thanks
With your code didn't work, but it works adding gtk in the option 2. See capture 1: don't work, and capture 2: OK.
Thanks
- Attachments
-
- 2: OK.
- 2.png (86.92 KiB) Viewed 6066 times
-
- 1: don't work
- 1.png (88.71 KiB) Viewed 6066 times
Re: Qcad3 profesional open with "plastique" and I want clear
Good - glad you've solved it.