diff options
Diffstat (limited to 'textedit.cpp')
-rw-r--r-- | textedit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textedit.cpp b/textedit.cpp index 4dabfd1..5a5216c 100644 --- a/textedit.cpp +++ b/textedit.cpp @@ -38,7 +38,7 @@ TextEdit::TextEdit() connect(tabWidget, SIGNAL(tabCloseRequested(int)), this, SLOT(removeTab(int))); slotNewEditorPageTab(); setAcceptDrops(false); - QPushButton *newButton = new QPushButton(QIcon(":button_plus.png"), ""); + QPushButton *newButton = new QPushButton(QIcon(":button_plus.png").pixmap(QSize(16,16)), ""); tabWidget->setCornerWidget(newButton,Qt::TopLeftCorner); connect(newButton, SIGNAL(clicked()), this, SLOT(slotNewEditorPageTab())); |