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 your operating system and QCAD version.
Attach drawing files and screenshots.
Post one question per topic.
Always indicate your operating system and QCAD version.
Attach drawing files and screenshots.
Post one question per topic.
-
- Junior Member
- Posts: 16
- Joined: Wed Oct 15, 2008 12:38 pm
QCAD3 opens with "plastique" and I want clearlook [SOLVED]
- Attachments
-
- qcad3-ugly.png (80.71 KiB) Viewed 18430 times
- andrew
- Site Admin
- Posts: 8772
- Joined: Fri Mar 30, 2007 6:07 am
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
-
- Junior Member
- Posts: 16
- Joined: Wed Oct 15, 2008 12:38 pm
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
- andrew
- Site Admin
- Posts: 8772
- Joined: Fri Mar 30, 2007 6:07 am
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 "$@"
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 "$@"
or
- create an alias for qcad -> qcad -style plastique
or
- create your own wrapper script
-
- Junior Member
- Posts: 16
- Joined: Wed Oct 15, 2008 12:38 pm
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 18389 times
-
- 1: don't work
- 1.png (88.71 KiB) Viewed 18389 times
- andrew
- Site Admin
- Posts: 8772
- Joined: Fri Mar 30, 2007 6:07 am
Re: Qcad3 profesional open with "plastique" and I want clear
Good - glad you've solved it.