I want to increase the Height of the navigationBar in CalendarWidget
-
Hello, everyone,I want to increase the Height of the navigationBar.CalendarWidget.
Tried using a style sheet, but increased the size of the arrow-down and arrow -up.
Want to increase the Height of navigationBar. -
Hi
I don't think you can only increase that height.You could change Font size and get it bigger that way
QCalendarWidget QWidget#qt_calendar_navigationbar {
font-size: 24px;
}Have a look at
http://www.qtcentre.org/archive/index.php/t-30478.htmlYou can do it from code with
QWidget *calendarNavBar = ui->calendarWidget->findChild<QWidget *>("qt_calendar_navigationbar"); if (calendarNavBar) { calendarNavBar->setMinimumHeight(200); }
-
@ForestPoem said:
haeteotneunde
No idea what that is but
calendarNavBar is part of private class of calendarWidget so accessing it
might break later on even if a bit unlikely as its not been changed for a long time and it pretty stable.