[X2Go-Commits] [x2goclient] 01/01: Replace QFont::Thin with 0 to keep compatibility with Qt4.
git-admin at x2go.org
git-admin at x2go.org
Fri Nov 5 17:08:10 CET 2021
This is an automated email from the git hooks/post-receive script.
x2go pushed a commit to branch master
in repository x2goclient.
commit 4c08e0450603cb5a8d54d4648838cf9f8cb734ba
Author: Oleksandr Shneyder <o.shneyder at phoca-gmbh.de>
Date: Fri Nov 5 10:08:01 2021 -0600
Replace QFont::Thin with 0 to keep compatibility with Qt4.
---
debian/changelog | 1 +
src/sessionbutton.cpp | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/debian/changelog b/debian/changelog
index 5b3a966..8e38f2a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -31,6 +31,7 @@ x2goclient (4.1.2.3-0x2go1) UNRELEASED; urgency=medium
- Show session path in session button in Favorite and Running views.
- Improve synchronisation in broker mode.
- Fix loading HTTP icon in pass dialog in broker mode.
+ - Replace QFont::Thin with 0 to keep compatibility with Qt4.
[ Ryan Schmidt ]
* New upstream version (4.1.2.3):
diff --git a/src/sessionbutton.cpp b/src/sessionbutton.cpp
index 588f706..d0c50fb 100644
--- a/src/sessionbutton.cpp
+++ b/src/sessionbutton.cpp
@@ -102,7 +102,7 @@ SessionButton::SessionButton ( ONMainWindow* mw,QWidget *parent, QString id )
pathLabel=new QLabel ( this );
QFont lfnt=fnt;
- lfnt.setWeight(QFont::Thin);
+ lfnt.setWeight(0);
lfnt.setPointSize(lfnt.pointSize()-2);
pathLabel->setFont(lfnt);
--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
More information about the x2go-commits
mailing list