mirror of
https://github.com/fralx/LimeReport.git
synced 2025-10-09 05:57:14 +03:00
fix font size
This commit is contained in:
@@ -53,7 +53,14 @@ DataBrowser::DataBrowser(QWidget *parent) :
|
||||
QWidget(parent),
|
||||
ui(new Ui::DataBrowser), m_report(0), m_closingWindows(false), m_settings(0), m_ownedSettings(false)
|
||||
{
|
||||
auto f = qApp->font();
|
||||
f.setPointSize(f.pointSize()*0.7);
|
||||
ui->setupUi(this);
|
||||
setFont(f);
|
||||
ui->tabWidget->setFont(f);
|
||||
ui->tabWidget->setCurrentWidget(ui->tab_2);
|
||||
ui->variablesTree->setFont(f);
|
||||
ui->dataTree->setFont(f);
|
||||
connect(ui->addConnection,SIGNAL(clicked()),this,SLOT(slotAddConnection()));
|
||||
connect(ui->deleteConection,SIGNAL(clicked()),this,SLOT(slotDeleteConnection()));
|
||||
connect(ui->addDataSource,SIGNAL(clicked()),this,SLOT(slotAddDataSource()));
|
||||
|
@@ -35,7 +35,7 @@
|
||||
<enum>QTabWidget::South</enum>
|
||||
</property>
|
||||
<property name="currentIndex">
|
||||
<number>1</number>
|
||||
<number>0</number>
|
||||
</property>
|
||||
<widget class="QWidget" name="tab_2">
|
||||
<attribute name="title">
|
||||
|
Reference in New Issue
Block a user