Skip to content

Commit

Permalink
Merge pull request #6 from NetNerd/dev
Browse files Browse the repository at this point in the history
Update master to dev(still 0.3)
  • Loading branch information
NetNerd committed Aug 19, 2015
2 parents b7d58f3 + f7a37e7 commit f713796
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ConfigPanel.vb
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Public Class ConfigPanel
Private Shared LblForceArtist As Label
Private Shared WithEvents ForceArtistCB As ComboBox

Private Shared LblForceArtist As Label
Private Shared WithEvents LblForceArtist As Label
Private Shared WithEvents ForceArtistCB As CheckBox

Private Shared Border1 As Panel
Expand Down Expand Up @@ -139,6 +139,10 @@ Public Class ConfigPanel
MySettings.ForceArtistMatch = ForceArtistCB.Checked
End Sub

Private Shared Sub LblForceArtist_Click(sender As Object, e As EventArgs) Handles LblForceArtist.Click
ForceArtistCB.Checked = Not ForceArtistCB.Checked
End Sub

'Drag/drop on the language boxes
Private Shared Sub LangBox_DragDrop(ByVal sender As ListBox, ByVal e As System.Windows.Forms.DragEventArgs) Handles LangBox1.DragDrop, LangBox2.DragDrop
If sender.PointToClient(New Point(e.X, e.Y)).Y < 0 Then
Expand Down

0 comments on commit f713796

Please sign in to comment.