Skip to content

Commit

Permalink
Fixed #315 - Changed Font size from 25 to 20
Browse files Browse the repository at this point in the history
The clock widget should not be dominant.
  • Loading branch information
foldynl committed Feb 23, 2024
1 parent 084aaa0 commit 2bdbaa9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/ClockWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ ClockWidget::ClockWidget(QWidget *parent) :
ui->sunGraphicsView->setScene(sunScene.data());

QFont font = clockItem->font();
font.setPointSize(25);
font.setPointSize(20);
clockItem->setFont(font);
clockScene->addItem(clockItem.data());
ui->clockGraphicsView->setScene(clockScene.data());
Expand Down

0 comments on commit 2bdbaa9

Please sign in to comment.