Bug 113919 - Thumbbar fullscreen mode configuration problem.
Summary: Thumbbar fullscreen mode configuration problem.
Status: RESOLVED FIXED
Alias: None
Product: digikam
Classification: Applications
Component: Showfoto-Thumbs (show other bugs)
Version: unspecified
Platform: Compiled Sources Linux
: NOR normal
Target Milestone: ---
Assignee: Digikam Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-10-05 22:21 UTC by Tung NGUYEN
Modified: 2022-02-05 04:57 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In: 7.6.0


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Tung NGUYEN 2005-10-05 22:21:50 UTC
Version:           0.3.0-cvs (packaged with Digikam 0.8.0-beta2) (using KDE KDE 3.4.2)
Installed from:    Compiled From Sources
OS:                Linux

- Open "ShowFoto->Settings->Configure ShowFoto" and uncheck the option "General->Hide thumbbar in fullscreen mode" (by default, it is checked).
- Click on OK to close the "Configure ShowFoto" window.
- Reopen the "Configure ShowFoto" window, now you can see that the option "General->Hide thumbbar in fullscreen mode" is checked ! but in showfotorc, I have FullScreenHideThumbBar=false.

For your information, when running fullscreen mode with FullScreenHideThumbBar=false, I have the following message in Konsole:

showfoto: WARNING: Can not plug KToggleAction in Digikam::ThumbBarView.
Comment 1 caulier.gilles 2005-10-06 07:20:39 UTC
SVN commit 467728 by cgilles:

showfoto : restore properly thumbar settings.

CCBUG: 113919

 M  +1 -1      setupeditor.cpp  


--- trunk/extragear/graphics/digikam/showfoto/setupeditor.cpp #467727:467728
@@ -144,7 +144,7 @@
     m_PNGcompression->setValue( config->readNumEntry("PNGCompression", 9) );
     m_TIFFcompression->setChecked(config->readBoolEntry("TIFFCompression", false));
     m_hideToolBar->setChecked(config->readBoolEntry("FullScreenHideToolBar", false));
-    m_hideThumbBar->setChecked(config->readBoolEntry("FullScreenHideThumblBar", true));
+    m_hideThumbBar->setChecked(config->readBoolEntry("FullScreenHideThumbBar", true));
     m_useTrashCheck->setChecked(config->readBoolEntry("DeleteItem2Trash", false));
     m_showSplashCheck->setChecked(config->readBoolEntry("ShowSplash", true));
 
Comment 2 caulier.gilles 2005-10-07 07:54:39 UTC
Tung, with this commit showfoto working fine for you now ?

Gilles
Comment 3 Tung NGUYEN 2005-10-07 12:19:14 UTC
Gilles, 
 
 The Thumbbar fullscreen mode configuration works fine now with the lastest SVN. 
 
 I think you can close this bug report. Thank you.
Comment 4 caulier.gilles 2005-10-07 12:34:35 UTC
Ok. Closed

Gilles