reduce space-size of buttons
Hello,
look at the pictures here:
http://ubuntuone.com/6rpPTkQeIauvyZQhMoUh0p
http://ubuntuone.com/47k64UGZRjpzVL0aEkADay
as you can see i have some buttons and i want to reduce the space between them, in the second picture you can see that the button get the most space...
i have created the button with this code (example for play button) :
Code:
mplay_pauseButton.setIcon(mplayIcon);
mplay_pauseButton.setIconSize(mplayPixmap.rect().size());
mplay_pauseButton.setFlat(true);
were mplayPixmap is the pixmap with the icon
any idea how to reduce the space?
Re: reduce space-size of buttons
Re: reduce space-size of buttons
Re: reduce space-size of buttons
Re: reduce space-size of buttons
And/or crop your images to avoid empty space around them (GIMP is your friend :) ).
Re: reduce space-size of buttons
Quote:
Originally Posted by
Spitfire
And/or crop your images to avoid empty space around them (GIMP is your friend :) ).
i used gimp but i cannot crop it anymore..
i used QToolButton
Re: reduce space-size of buttons
QPushButton enforces a fixed minimum size so cropping the icon will not change anything.
Re: reduce space-size of buttons