We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18047a2 commit cc3bd9cCopy full SHA for cc3bd9c
1 file changed
src/Options.cs
@@ -56,7 +56,10 @@ public Options()
56
cbKeePassInstallType.Items.Add(KeePass_Update.KeePassInstallType.MSI);
57
cbKeePassInstallType.Items.Add(KeePass_Update.KeePassInstallType.Portable);
58
lKeePassFolder.Text = KPRes.Folder + ":";
59
- lKeePassInstallType.Text = KPRes.Type + ":";
+
60
+ var t = typeof(KPRes).GetProperty("Type");
61
+ if (t != null) lKeePassInstallType.Text = t.GetValue(null, null) + ":";
62
+ else lKeePassInstallType.Text = "Type:";
63
}
64
65
private void bUpdateTranslations_Click(object sender, EventArgs e)
0 commit comments