Skip to content

Commit

Permalink
Fix some specif fonts and icon issues on the mac
Browse files Browse the repository at this point in the history
  • Loading branch information
nuttyartist committed Dec 28, 2015
1 parent 313ee8e commit b7c940a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,9 @@ void MainWindow::SetUpNewNoteButtonAndTrahButton ()
{
#ifdef __APPLE__
ui->newNoteButton->setGeometry(ui->newNoteButton->x(), ui->newNoteButton->y(), 50, 32);
ui->newNoteButton->setIconSize(QSize(24, 24));
ui->newNoteButton->setIconSize(QSize(16, 16));
ui->trashButton->setGeometry(676, ui->trashButton->y(), 50, 32);
ui->trashButton->setIconSize(QSize(16, 16));
ui->trashButton->setIconSize(QSize(14, 18));
#endif
}
/**
Expand Down Expand Up @@ -290,7 +290,7 @@ void MainWindow::SetUpTextEdit ()
#elif _WIN32
ui->textEdit->setFont(QFont("Arial", 11));
#elif __APPLE__
ui->textEdit->setFont(QFont("Helvetica", 11));
ui->textEdit->setFont(QFont("Helvetica", 15));
#else
#error "We don't support that version yet..."
#endif
Expand Down

0 comments on commit b7c940a

Please sign in to comment.