Gentoo Archives: gentoo-commits

From: "Peter Volkov (pva)" <pva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-im/psi/files: psi-0.13_rc1-dialog-show.patch
Date: Tue, 02 Jun 2009 17:04:42
Message-Id: E1MBXPk-0005Jj-HL@stork.gentoo.org
1 pva 09/06/02 17:04:40
2
3 Added: psi-0.13_rc1-dialog-show.patch
4 Log:
5 Fixed bug when call dialog might not display, bug #271091, thank Petr Moravek for report.
6 (Portage version: 2.2_rc33/cvs/Linux i686)
7
8 Revision Changes Path
9 1.1 net-im/psi/files/psi-0.13_rc1-dialog-show.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/psi/files/psi-0.13_rc1-dialog-show.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/psi/files/psi-0.13_rc1-dialog-show.patch?rev=1.1&content-type=text/plain
13
14 Index: psi-0.13_rc1-dialog-show.patch
15 ===================================================================
16 commit 21278511d08c42fe82db751c3749bb8ae7f5adb6
17 Author: Justin Karneges <justin@×××××××.com>
18 Date: Mon Jun 1 11:23:51 2009 -0700
19
20 fix bug where calldlg might not display
21
22 diff --git a/src/avcall/calldlg.cpp b/src/avcall/calldlg.cpp
23 index 424e627..36504f2 100644
24 --- a/src/avcall/calldlg.cpp
25 +++ b/src/avcall/calldlg.cpp
26 @@ -87,7 +87,7 @@ public:
27 ui.pb_accept->setDefault(true);
28 ui.pb_accept->setFocus();
29
30 - q->resize(q->minimumSize());
31 + q->resize(q->minimumSizeHint());
32 }
33
34 ~Private()