--------------Boundary-00=_EF3JEKM2O4OMB2B1ARMH Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit Hello, see subject. If you click folder of main window, folder animation(yellow mini gear) in sidebar does not stop. The attached patch fixed this bug. If this patch has not a problem, please commit. -- Toshitaka Fujioka http://www.kde.org The K Desktop Environment Project fujioka@kde.org http://www.kde.gr.jp Japan KDE User's Group toshitaka@kde.gr.jp -- A journey of a thousand miles must begin with a single step. Lao-zi -- --------------Boundary-00=_EF3JEKM2O4OMB2B1ARMH Content-Type: text/x-diff; charset="iso-2022-jp"; name="kdebase-konqueror-fixInfiniteFolderAnimation-20020306.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="kdebase-konqueror-fixInfiniteFolderAnimation-20020306.diff" ? kdebase-konqueror-fixInfiniteFolderAnimation-20020306.diff Index: dirtree_module.cpp =================================================================== RCS file: /home/kde/kdebase/konqueror/sidebar/trees/dirtree_module/dirtree_module.cpp,v retrieving revision 1.15 diff -u -3 -d -p -r1.15 dirtree_module.cpp --- dirtree_module.cpp 2002/02/27 22:21:37 1.15 +++ dirtree_module.cpp 2002/03/06 01:37:08 @@ -166,8 +166,6 @@ void KonqSidebarDirTreeModule::openSubFo m_pProps = new KonqPropsView(tree()->part()->parentInstance(), s_defaultViewProps ); } - listDirectory( item ); - if ( !item->isTopLevelItem() && static_cast(item)->hasStandardIcon() ) { @@ -177,6 +175,8 @@ void KonqSidebarDirTreeModule::openSubFo } else m_pTree->startAnimation( item ); + + listDirectory( item ); } void KonqSidebarDirTreeModule::listDirectory( KonqSidebarTreeItem *item ) --------------Boundary-00=_EF3JEKM2O4OMB2B1ARMH--