Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
UltimateZoneBuilder
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alam Ed Arias
UltimateZoneBuilder
Commits
1c02c7e6
Commit
1c02c7e6
authored
14 years ago
by
codeimp
Browse files
Options
Downloads
Patches
Plain Diff
Fixed bug in Things Filters which caused removed flag settings to be restored after DB restart.
parent
99f8e014
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Source/Core/Config/ConfigurationInfo.cs
+1
-0
1 addition, 0 deletions
Source/Core/Config/ConfigurationInfo.cs
Source/Core/Config/ProgramConfiguration.cs
+4
-0
4 additions, 0 deletions
Source/Core/Config/ProgramConfiguration.cs
with
5 additions
and
0 deletions
Source/Core/Config/ConfigurationInfo.cs
+
1
−
0
View file @
1c02c7e6
...
...
@@ -167,6 +167,7 @@ namespace CodeImp.DoomBuilder.Config
resources
.
WriteToConfig
(
General
.
Settings
.
Config
,
"configurations."
+
settingskey
+
".resources"
);
// Write filters to configuration
General
.
Settings
.
DeleteSetting
(
"configurations."
+
settingskey
+
".thingsfilters"
);
for
(
int
i
=
0
;
i
<
thingsfilters
.
Count
;
i
++)
{
thingsfilters
[
i
].
WriteSettings
(
General
.
Settings
.
Config
,
...
...
This diff is collapsed.
Click to expand it.
Source/Core/Config/ProgramConfiguration.cs
+
4
−
0
View file @
1c02c7e6
...
...
@@ -419,6 +419,10 @@ namespace CodeImp.DoomBuilder.Config
internal
bool
WriteSetting
(
string
setting
,
object
settingvalue
)
{
return
cfg
.
WriteSetting
(
setting
,
settingvalue
);
}
internal
bool
WriteSetting
(
string
setting
,
object
settingvalue
,
string
pathseperator
)
{
return
cfg
.
WriteSetting
(
setting
,
settingvalue
,
pathseperator
);
}
// DeleteSetting
internal
bool
DeleteSetting
(
string
setting
)
{
return
cfg
.
DeleteSetting
(
setting
);
}
internal
bool
DeleteSetting
(
string
setting
,
string
pathseperator
)
{
return
cfg
.
DeleteSetting
(
setting
,
pathseperator
);
}
#
endregion
#
region
==================
Default
Settings
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment