remember last directory used for extraction.

This commit is contained in:
morkt
2015-08-01 00:20:21 +04:00
parent 28ec300c12
commit d07ea919d7
3 changed files with 17 additions and 2 deletions

View File

@@ -345,5 +345,17 @@ namespace GARbro.GUI.Properties {
this["appIgnoreConversionErrors"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("")]
public string appLastDestination {
get {
return ((string)(this["appLastDestination"]));
}
set {
this["appLastDestination"] = value;
}
}
}
}