Summary: | Participants (attendee) dialog does not look and behave good when many participants entered | ||
---|---|---|---|
Product: | [Unmaintained] KOrganizer Mobile | Reporter: | Felix Wolfsteller <felix.wolfsteller> |
Component: | general | Assignee: | kdepim bugs <kdepim-bugs> |
Status: | RESOLVED UNMAINTAINED | ||
Severity: | normal | CC: | aheinecke |
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Windows CE | ||
OS: | Microsoft Windows CE | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Felix Wolfsteller
2010-10-08 11:42:26 UTC
commit 963a9b09784b4b102da8a488f516e6adcebfeb72 branch master Author: Tobias Koenig <tokoe@kde.org> 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 *)), Adding more then four attendees on WinCE is not possible at the moment, a scrollbar appears but the next attendee field can not be reached with it and the bottom of the scrollbar is out of the screen. |