Skip to content

Commit

Permalink
remove hard width in combobox
Browse files Browse the repository at this point in the history
  • Loading branch information
vicdotexe committed Sep 29, 2024
1 parent 57fe6fd commit c01d058
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
using System.Text;
using System.Windows.Forms;
using FlatRedBall.Glue.Themes;
using HorizontalAlignment = System.Windows.HorizontalAlignment;

namespace GlueFormsCore.Plugins.EmbeddedPlugins.MenuStripPlugin
{
Expand Down Expand Up @@ -244,7 +245,7 @@ private void newContentCSVToolStripMenuItem_Click(object sender, EventArgs e)
comboBox.Items.Add(Localization.Texts.ProjectThisOnly);
// May 11 2023 - probably want to default to this project
comboBox.Text = Localization.Texts.ProjectThisOnly;
comboBox.Width = 136;
comboBox.HorizontalAlignment = HorizontalAlignment.Center;
tiw.AddControl(comboBox);

// CSVs can be added to be project-specific or shared across all projects (installed to a centralized location)
Expand Down

0 comments on commit c01d058

Please sign in to comment.