The branch, master has been updated
via 5211f3a90760a40ede5c0062b19fdde123058ae8 (commit)
from fe8556495321fd2dc2d3569b6573a693100ec6f3 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 5211f3a90760a40ede5c0062b19fdde123058ae8
Author: Oleksandr Shneyder <oleksandr.shneyder(a)treuchtlingen.de>
Date: Thu Sep 22 09:02:57 2011 +0200
Set font size in pinentry dialog to 14
-----------------------------------------------------------------------
Summary of changes:
debian/changelog | 4 ++--
pinentry-x2go/pinentrydialog.cpp | 5 +++--
2 files changed, 5 insertions(+), 4 deletions(-)
The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index dce36a0..3d509a7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,8 @@
pinentry-x2go (0.7.5.0-1~x2go1) UNRELEASED; urgency=low
- * Set font size in pinentry dialog to 16
+ * Set font size in pinentry dialog to 14
- -- Oleksandr Shneyder <oleksandr.shneyder(a)obviously-nice.de> Thu, 22 Sep 2011 08:50:01 +0200
+ -- Oleksandr Shneyder <oleksandr.shneyder(a)obviously-nice.de> Thu, 22 Sep 2011 09:02:30 +0200
pinentry-x2go (0.7.5.0-0~x2go1) unstable; urgency=low
diff --git a/pinentry-x2go/pinentrydialog.cpp b/pinentry-x2go/pinentrydialog.cpp
index 3465cb7..87eb2bf 100644
--- a/pinentry-x2go/pinentrydialog.cpp
+++ b/pinentry-x2go/pinentrydialog.cpp
@@ -50,7 +50,7 @@ PinEntryDialog::PinEntryDialog( QWidget* parent, const char* , bool )
_bs= new QPushButton(QString(8592), this );
QFont f=_bs->font();
- f.setPointSize(16);
+ f.setPointSize(20);
_bs->setFont(f);
_icon->hide();
_error->hide();
@@ -88,7 +88,6 @@ PinEntryDialog::PinEntryDialog( QWidget* parent, const char* , bool )
_bs->setFixedSize(QSize(_num[0]->sizeHint()).height(),QSize(_num[0]->sizeHint()).height());
_bs->setFocusPolicy(Qt::NoFocus);
_edit->setFixedHeight(_num[0]->sizeHint().height());
- _edit->setFont(f);
_ok->setDefault(true);
QVBoxLayout* mlay=new QVBoxLayout(this);
@@ -125,6 +124,8 @@ PinEntryDialog::PinEntryDialog( QWidget* parent, const char* , bool )
this, SLOT (reject ()));
connect (_edit,SIGNAL(bs_pressed()),this,SLOT(slot_bs()));
connect (_edit,SIGNAL(cancel_pressed()),this,SLOT(reject()));
+ f.setPointSize(14);
+ _edit->setFont(f);
_edit->setFocus();
}
hooks/post-receive
--
pinentry-x2go.git (PinEntry Dialog (Qt) for X2goClient)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "pinentry-x2go.git" (PinEntry Dialog (Qt) for X2goClient).