Skip to content

Commit

Permalink
Fixed GUI issue preventing use of online mode
Browse files Browse the repository at this point in the history
  • Loading branch information
mihaifm committed Jul 23, 2019
1 parent 1a20b20 commit 5e68cb3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion HIBPOfflineCheck/HIBPOfflineCheckOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public HIBPOfflineCheckOptions(HIBPOfflineCheckExt ext)
private bool CommitOptions()
{
options.CheckMode = radioButtonOffline.Checked ?
Options.CheckModeType.Offline : radioButtonOffline.Checked ?
Options.CheckModeType.Offline : radioButtonOnline.Checked ?
Options.CheckModeType.Online : Options.CheckModeType.BloomFilter;

options.HIBPFileName = textBoxFileName.Text;
Expand Down
4 changes: 2 additions & 2 deletions HIBPOfflineCheck/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.6.0.0")]
[assembly: AssemblyFileVersion("1.6.0.0")]
[assembly: AssemblyVersion("1.6.1.0")]
[assembly: AssemblyFileVersion("1.6.1.0")]
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
:
HIBPOfflineCheck:1.6.0.0
HIBPOfflineCheck:1.6.1.0
:

0 comments on commit 5e68cb3

Please sign in to comment.