This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2goclient. from 2537043 Fix loading HTTP icon in pass dialog in broker mode. new 4c08e04 Replace QFont::Thin with 0 to keep compatibility with Qt4. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: debian/changelog | 1 + src/sessionbutton.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
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@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