https://bugs.kde.org/show_bug.cgi?id=253576


Tobias Koenig <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED




--- Comment #1 from Tobias Koenig <tokoe kde org>  2010-12-29 16:05:20 ---
commit 963a9b09784b4b102da8a488f516e6adcebfeb72
branch master
Author: Tobias Koenig <[email protected]>
Date:   Wed Dec 29 16:07:23 2010 +0100

    Use static size for attendee editor

    Make use of the new property in MultiplyingLineEditor to avoid
    usage of dynamic size hints in mobile UI mode.
    This fixes the broken attendee list if more than 4 attendees have
    been added.

    BUG: 253576

diff --git a/incidenceeditor-ng/incidenceattendee.cpp
b/incidenceeditor-ng/incidenceattendee.cpp
index c066424..aacbfc6 100644
--- a/incidenceeditor-ng/incidenceattendee.cpp
+++ b/incidenceeditor-ng/incidenceattendee.cpp
@@ -69,6 +69,10 @@ IncidenceAttendee::IncidenceAttendee( QWidget *parent,
IncidenceDateTime *dateTi
   mAttendeeEditor->setCompletionMode(
KGlobalSettings::self()->completionMode() );
   mAttendeeEditor->setFrameStyle( QFrame::Sunken | QFrame::StyledPanel );

+#ifdef KDEPIM_MOBILE_UI
+  mAttendeeEditor->setDynamicSizeHint( false );
+#endif
+
   connect( mAttendeeEditor, SIGNAL(countChanged(int)),
            SIGNAL(attendeeCountChanged(int)) );
   connect( mAttendeeEditor, SIGNAL(editingFinished(KPIM::MultiplyingLine *)),

-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
_______________________________________________
Kdepim-bugs mailing list
[email protected]
https://mail.kde.org/mailman/listinfo/kdepim-bugs

Reply via email to