mirror of
https://github.com/Novetus/Novetus_src.git
synced 2025-01-31 17:53:01 +02:00
minor QOL fix
This commit is contained in:
parent
35b56604d4
commit
d8725a9956
@ -1353,9 +1353,10 @@ namespace NovetusLauncher
|
||||
|
||||
private void ShirtsIDBox_TextChanged(object sender, EventArgs e)
|
||||
{
|
||||
listBox6.SelectedItem = "NoShirt.rbxm";
|
||||
|
||||
if (!string.IsNullOrWhiteSpace(ShirtsIDBox.Text))
|
||||
{
|
||||
listBox6.SelectedItem = "NoShirt.rbxm";
|
||||
GlobalVars.UserCustomization.Shirt = Custom_Shirt_URL + ShirtsIDBox.Text;
|
||||
CustomizationFuncs.ChangeItem(
|
||||
GlobalVars.UserCustomization.Shirt,
|
||||
@ -1372,9 +1373,10 @@ namespace NovetusLauncher
|
||||
|
||||
private void TShirtsIDBox_TextChanged(object sender, EventArgs e)
|
||||
{
|
||||
listBox5.SelectedItem = "NoTShirt.rbxm";
|
||||
|
||||
if (!string.IsNullOrWhiteSpace(TShirtsIDBox.Text))
|
||||
{
|
||||
listBox5.SelectedItem = "NoTShirt.rbxm";
|
||||
GlobalVars.UserCustomization.TShirt = Custom_T_Shirt_URL + TShirtsIDBox.Text;
|
||||
CustomizationFuncs.ChangeItem(
|
||||
GlobalVars.UserCustomization.TShirt,
|
||||
@ -1391,9 +1393,10 @@ namespace NovetusLauncher
|
||||
|
||||
private void PantsIDBox_TextChanged(object sender, EventArgs e)
|
||||
{
|
||||
listBox7.SelectedItem = "NoPants.rbxm";
|
||||
|
||||
if (!string.IsNullOrWhiteSpace(PantsIDBox.Text))
|
||||
{
|
||||
listBox7.SelectedItem = "NoPants.rbxm";
|
||||
GlobalVars.UserCustomization.Pants = Custom_Pants_URL + PantsIDBox.Text;
|
||||
CustomizationFuncs.ChangeItem(
|
||||
GlobalVars.UserCustomization.Pants,
|
||||
|
@ -1357,9 +1357,10 @@ namespace NovetusLauncher
|
||||
|
||||
private void ShirtsIDBox_TextChanged(object sender, EventArgs e)
|
||||
{
|
||||
listBox6.SelectedItem = "NoShirt.rbxm";
|
||||
|
||||
if (!string.IsNullOrWhiteSpace(ShirtsIDBox.Text))
|
||||
{
|
||||
listBox6.SelectedItem = "NoShirt.rbxm";
|
||||
GlobalVars.UserCustomization.Shirt = Custom_Shirt_URL + ShirtsIDBox.Text;
|
||||
CustomizationFuncs.ChangeItem(
|
||||
GlobalVars.UserCustomization.Shirt,
|
||||
@ -1376,9 +1377,10 @@ namespace NovetusLauncher
|
||||
|
||||
private void TShirtsIDBox_TextChanged(object sender, EventArgs e)
|
||||
{
|
||||
listBox5.SelectedItem = "NoTShirt.rbxm";
|
||||
|
||||
if (!string.IsNullOrWhiteSpace(TShirtsIDBox.Text))
|
||||
{
|
||||
listBox5.SelectedItem = "NoTShirt.rbxm";
|
||||
GlobalVars.UserCustomization.TShirt = Custom_T_Shirt_URL + TShirtsIDBox.Text;
|
||||
CustomizationFuncs.ChangeItem(
|
||||
GlobalVars.UserCustomization.TShirt,
|
||||
@ -1395,9 +1397,10 @@ namespace NovetusLauncher
|
||||
|
||||
private void PantsIDBox_TextChanged(object sender, EventArgs e)
|
||||
{
|
||||
listBox7.SelectedItem = "NoPants.rbxm";
|
||||
|
||||
if (!string.IsNullOrWhiteSpace(PantsIDBox.Text))
|
||||
{
|
||||
listBox7.SelectedItem = "NoPants.rbxm";
|
||||
GlobalVars.UserCustomization.Pants = Custom_Pants_URL + PantsIDBox.Text;
|
||||
CustomizationFuncs.ChangeItem(
|
||||
GlobalVars.UserCustomization.Pants,
|
||||
|
Loading…
Reference in New Issue
Block a user