| Summary: | Displaying problems with the left sidebar. | ||
|---|---|---|---|
| Product: | [Applications] digikam | Reporter: | Tung NGUYEN <ntung> |
| Component: | Usability-Ergonomy | Assignee: | Digikam Developers <digikam-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: | 7.6.0 | |
| Sentry Crash Report: | |||
|
Description
Tung NGUYEN
2005-11-14 14:57:24 UTC
I can reproduce it here. I suspect a problem relevant of widget rules in sidebar implementation. Joern, your viewpoint ? Gilles On Monday 14 November 2005 15:02, Gilles Caulier wrote:
> Joern, your viewpoint ?
Cool feature.... ;-) I will check that.
... J
SVN commit 481497 by jahrens:
The initial widget wasn't properly set if the sitebar was started minimized.
BUG: 116346
M +7 -1 sidebar.cpp
--- trunk/extragear/graphics/digikam/libs/widgets/sidebar.cpp #481496:481497
@@ -75,7 +75,13 @@
minimized = config->readNumEntry("Minimized", m_minimizedDefault);
if(minimized)
+ {
m_activeTab = tab;
+ setTab(m_activeTab, true);
+ m_stack->raiseWidget(m_activeTab);
+
+ emit signalChangedTab(m_stack->visibleWidget());
+ }
else
m_activeTab = -1;
@@ -135,7 +141,7 @@
m_stack->raiseWidget(m_activeTab);
if(m_minimized)
- expand();
+ expand();
emit signalChangedTab(m_stack->visibleWidget());
}
Hi Joern! I have tested your SVN commit 481497, and now all the views of the left sidebar have a correct behaviour. Thank you very much for the fix. Have a good week-end. --- Tung. |