Minor UX tweaks

This commit is contained in:
Pictoverse 2018-06-17 22:42:09 -04:00
parent 918735e294
commit a9e7a6a536
3 changed files with 8 additions and 5 deletions

View file

@ -7,14 +7,14 @@ using System.Runtime.Versioning;
[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
[assembly: AssemblyTitle("XCI Explorer")]
[assembly: AssemblyTitle("XCI Explorer v1.0.0.3")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("XCI Explorer")]
[assembly: AssemblyProduct("XCI Explorer v1.0.0.3")]
[assembly: AssemblyCopyright("Copyright © 2018")]
[assembly: AssemblyTrademark("")]
[assembly: ComVisible(false)]
[assembly: Guid("206c6c47-87b1-477f-b6e6-f7e7c1a92f8f")]
[assembly: AssemblyFileVersion("1.0.0.2")]
[assembly: AssemblyVersion("1.0.0.2")]
[assembly: AssemblyFileVersion("1.0.0.3")]
[assembly: AssemblyVersion("1.0.0.3")]

View file

@ -5,7 +5,7 @@
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<OutputType>WinExe</OutputType>
<AssemblyName>XCI Explorer</AssemblyName>
<AssemblyName>XCI-Explorer-v1.0.0.3</AssemblyName>
<TargetFrameworkIdentifier>.NETFramework</TargetFrameworkIdentifier>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<WarningLevel>4</WarningLevel>

View file

@ -323,6 +323,7 @@ namespace XCI_Explorer
CB_RegionName.Items.Add(Language[i]);
try
{
CB_RegionName.Enabled = true;
using (Bitmap original = new Bitmap("data\\icon_" + Language[i].Replace(" ", "") + ".dat"))
{
Icons[i] = new Bitmap(original);
@ -331,6 +332,7 @@ namespace XCI_Explorer
catch
{
// using bad coding coding practices as a temporary fix until someone can figure out the problem
CB_RegionName.Enabled = false;
msgFlag = true;
}
PB_GameIcon.BackgroundImage = Icons[i];
@ -352,6 +354,7 @@ namespace XCI_Explorer
catch
{
// temporary fix until a dev can add card2 support
File.Delete("meta");
msgFlag2 = true;
}
}