remove space around qToolButton
-
Hi
if you set widget size to the same as icon size then it covers all of the button ( minus 1 pixel for the hover effect) -
@Bonnie
Thanks for the suggestion, it works in a way, but once the button is highlighted you can still see the border around the QIcon in the QToolButton. So the size of the button is still the same, I was hoping to shrink the size of the button, to being much closer to the size of the QIcon which is 16x16. I would prefer to have maybe 1/2 pixel border around the button. But also allow the button to expand if the screen resolution/ screen size is high. -
@jkwok678 said in remove space around qToolButton:
But also allow the button to expand if the screen resolution/ screen size is high.
Ok then DONT use setFixedSize to set size but just the normal ones
-
@jkwok678 said in remove space around qToolButton:
setFixedSize
Will set to a fixed size so nope, it wont resize then
so dont use it if you want toolbuttons to grow -
Hi
Sadly no.
If you want such things, make a custom button that does it.However, Qt has support for HIRES displays that do scaling etc.
and QIcon can have hires version to be used on such displays
https://doc.qt.io/qt-5/highdpi.htmlbut this has nothing to do with you want icon to cover all of the button at all times :)
That is not a hires thing, in my opinion :)here is example of custom button
https://stackoverflow.com/questions/31742194/dynamically-resize-qicon-without-calling-setsizeiconIt scales the cion to fit at any given time.
As you can see its not much code.