-rw-r--r-- | noncore/settings/netsystemtime/ntptabwidget.cpp | 2 | ||||
-rw-r--r-- | noncore/settings/netsystemtime/predicttabwidget.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/noncore/settings/netsystemtime/ntptabwidget.cpp b/noncore/settings/netsystemtime/ntptabwidget.cpp index 16d21cc..d0107a4 100644 --- a/noncore/settings/netsystemtime/ntptabwidget.cpp +++ b/noncore/settings/netsystemtime/ntptabwidget.cpp @@ -70,13 +70,13 @@ NTPTabWidget::NTPTabWidget( QWidget *parent ) lblNewTime = new QLabel( tr( "n/a" ), container ); layout->addWidget( lblNewTime, 2, 1 ); // NTP output display mleNtpOutput = new QMultiLineEdit( container ); QFont font( mleNtpOutput->font() ); - font.setPointSize( 7 ); + font.setPointSize( font.pointSize() - 2 ); mleNtpOutput->setFont( font ); mleNtpOutput->setWordWrap( QMultiLineEdit::WidgetWidth ); layout->addMultiCellWidget( mleNtpOutput, 3, 3, 0, 1 ); // Set NTP time button m_ntpBtn = new QPushButton( Opie::Core::OResource::loadPixmap( "netsystemtime/ntptab", Opie::Core::OResource::SmallIcon ), diff --git a/noncore/settings/netsystemtime/predicttabwidget.cpp b/noncore/settings/netsystemtime/predicttabwidget.cpp index 98e0afd..0b95277 100644 --- a/noncore/settings/netsystemtime/predicttabwidget.cpp +++ b/noncore/settings/netsystemtime/predicttabwidget.cpp @@ -73,13 +73,13 @@ PredictTabWidget::PredictTabWidget( QWidget *parent ) lblPredicted = new QLabel( tr( "n/a" ), this ); layout->addWidget( lblPredicted, 2, 1 ); // Prediction table tblLookups = new QTable( 2, 3, this ); QFont font( tblLookups->font() ); - font.setPointSize( 7 ); + font.setPointSize( font.pointSize() - 2 ); tblLookups->setFont( font ); tblLookups->horizontalHeader()->setLabel( 0, tr( "Shift [s/h]" ) ); tblLookups->horizontalHeader()->setLabel( 1, tr( "Last [h]" ) ); tblLookups->horizontalHeader()->setLabel( 2, tr( "Offset [s]" ) ); tblLookups->setMinimumHeight( 50 ); |