diff options
author | Ken Moore <ken@pcbsd.org> | 2016-08-01 15:43:14 -0400 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2016-08-01 15:43:14 -0400 |
commit | 7a42cee7e707c7cd6015256cda43ca55eee90408 (patch) | |
tree | 3986866b7e77071ed7c7b91cd28b5704a6786d06 /src-qt5/core/lumina-info/MainUI.cpp | |
parent | Add in the possibility of a "nowatch" file/flag for lumina-open to avoid watc... (diff) | |
download | lumina-7a42cee7e707c7cd6015256cda43ca55eee90408.tar.gz lumina-7a42cee7e707c7cd6015256cda43ca55eee90408.tar.bz2 lumina-7a42cee7e707c7cd6015256cda43ca55eee90408.zip |
Cleanup the sizing of the new QToolButtons a bit (ensure uniform sizes - does not touch screenshots since they are recessed by default).
Diffstat (limited to 'src-qt5/core/lumina-info/MainUI.cpp')
-rw-r--r-- | src-qt5/core/lumina-info/MainUI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/core/lumina-info/MainUI.cpp b/src-qt5/core/lumina-info/MainUI.cpp index 32c161ad..98a4c160 100644 --- a/src-qt5/core/lumina-info/MainUI.cpp +++ b/src-qt5/core/lumina-info/MainUI.cpp @@ -48,7 +48,6 @@ void MainUI::updateUI(){ connect(ui->list_sponsors, SIGNAL(itemActivated(QListWidgetItem*)), this, SLOT(showSponsor(QListWidgetItem*)) ); connect(ui->label_proj_lead, SIGNAL(linkActivated(const QString&)), this, SLOT(LinkClicked(QString)) ); connect(ui->label_proj_contrib, SIGNAL(linkActivated(const QString&)), this, SLOT(LinkClicked(QString)) ); - } void MainUI::showQtInfo(){ @@ -63,6 +62,7 @@ void MainUI::showSponsor(QListWidgetItem *item){ void MainUI::LinkClicked(QString url){ QProcess::startDetached("lumina-open \""+url+"\""); } + void MainUI::on_tool_bugs_clicked(){ LinkClicked(ui->tool_bugs->whatsThis()); } |