| Summary: | Info List View : Adding File remove Meta Data (Reload needed) | ||
|---|---|---|---|
| Product: | [Applications] konqueror | Reporter: | Sebastien <slaout> |
| Component: | file list view | Assignee: | Konqueror Bugs <konqueror-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Sebastien
2005-03-07 20:59:15 UTC
CVS commit by pletourn:
Don't clear the old metainfos after adding a new item
BUG:101052
M +3 -1 konq_infolistviewwidget.cc 1.11.4.1
--- kdebase/konqueror/listview/konq_infolistviewwidget.cc #1.11:1.11.4.1
@@ -223,4 +223,5 @@ void KonqInfoListViewWidget::slotNewItem
slotUpdateBackground();
+ if ( !m_favorite.mimetype )
determineCounts(list);
@@ -278,4 +279,5 @@ void KonqInfoListViewWidget::slotClear()
delete m_metaInfoJob;
m_metaInfoJob = 0;
+ m_favorite = KonqILVMimeType();
KonqBaseListViewWidget::slotClear();
|