https://bugs.kde.org/show_bug.cgi?id=263597
Tobias Koenig <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from Tobias Koenig <tokoe kde org> 2011-01-19 16:03:36 --- commit 481c39ab6e991bc62dece501660549c4a43e3046 branch master Author: Tobias Koenig <[email protected]> Date: Wed Jan 19 16:06:03 2011 +0100 Show the key treeview completely in mobile UI BUG: 263597 diff --git a/kleopatra/qml/kleopatra-mobile.qml b/kleopatra/qml/kleopatra-mobile.qml index 2417a93..bf0c057 100644 --- a/kleopatra/qml/kleopatra-mobile.qml +++ b/kleopatra/qml/kleopatra-mobile.qml @@ -46,8 +46,10 @@ KPIM.MainView { id : keyTreeView anchors.top : parent.top + anchors.topMargin : 35 anchors.bottom : searchBar.top anchors.left : parent.left + anchors.leftMargin : 30 anchors.right : parent.right } diff --git a/kleopatra/view/keytreeview.cpp b/kleopatra/view/keytreeview.cpp index ece5cdb..1454e27 100644 --- a/kleopatra/view/keytreeview.cpp +++ b/kleopatra/view/keytreeview.cpp @@ -186,6 +186,9 @@ void KeyTreeView::init() { m_proxy->setFilterFixedString( m_stringFilter ); m_proxy->setKeyFilter( m_keyFilter ); m_view->setModel( m_proxy ); +#ifdef KDEPIM_MOBILE_UI + m_view->setFrameStyle( QFrame::NoFrame ); +#endif } KeyTreeView::~KeyTreeView() {} -- 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
