Skip to content
This repository has been archived by the owner on May 19, 2023. It is now read-only.

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
Bjorn committed Nov 25, 2016
1 parent 9b0e7a0 commit 2835fb6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion FloatingGlucose/FormGlucoseSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ private void FormGlucoseSettings_Load(object sender, EventArgs e)
{
this.cbDataSource.SelectedItem = plugin;
plugin.Instance.OnPluginSelected(this);
this.btnBrowse.Visible = activePlugin.RequiresBrowseButton;
}


Expand Down Expand Up @@ -378,7 +379,7 @@ private void btnBrowse_Click(object sender, EventArgs e)

dialog.Filter = selectedPlugin.Instance.BrowseDialogFileFilter;
dialog.InitialDirectory = Path.GetPathRoot(Environment.SystemDirectory);
dialog.Title = "Please select a file for the plugin to handle";
dialog.Title = "select a file for the plugin to handle";

if (dialog.ShowDialog() == DialogResult.OK) {
this.txtDataSourceLocation.Text = dialog.FileName;
Expand Down

0 comments on commit 2835fb6

Please sign in to comment.