Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Utilities
Krusader
Commits
f6cf18bf
Commit
f6cf18bf
authored
Mar 18, 2013
by
Jan Lepper
Browse files
FIXED: [ 189943 ] toolbar position settings are not remembered
BUG: 189943
parent
34bb8905
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
f6cf18bf
CHANGED: disabled build of synchronizer by default, since it is unmaintained -
build togglable with cmake variable -DENABLE_SYNCHRONIZER=true|false
FIXED: [ 189943 ] toolbar position settings are not remembered
FIXED: [ 316031 ] crash when loading previews
FIXED: [ 238672 ] When saving checksums fails, they are lost. No 2nd chance to save elsewhere.
FIXED: [ 315764 ] "application/x-source-rpm" isn't linked to krarc protocol by default
...
...
krusader/krusader.cpp
View file @
f6cf18bf
...
...
@@ -458,6 +458,9 @@ void Krusader::savePosition() {
cfg
=
krConfig
->
group
(
"Startup"
);
MAIN_VIEW
->
saveSettings
(
cfg
);
saveMainWindowSettings
(
KConfigGroup
(
&
cfg
,
"MainWindowSettings"
));
krConfig
->
sync
();
}
...
...
@@ -690,6 +693,7 @@ void Krusader::updateGUI(bool enforce) {
KConfigGroup
cfg
(
krConfig
,
"Startup"
);
if
(
enforce
)
{
applyMainWindowSettings
(
KConfigGroup
(
&
cfg
,
"MainWindowSettings"
));
// now, hide what need to be hidden
toolBar
()
->
setVisible
(
cfg
.
readEntry
(
"Show tool bar"
,
_ShowToolBar
));
toolBar
(
"actionsToolBar"
)
->
setVisible
(
cfg
.
readEntry
(
"Show actions tool bar"
,
_ShowActionsToolBar
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment