Skip to content

Commit

Permalink
Fix issue MR-406 - Items disappear from External Tools toolbar when a…
Browse files Browse the repository at this point in the history
…ccessing External Tools panel
  • Loading branch information
rmcardle committed Mar 20, 2013
1 parent 72756a2 commit 08ddee1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.TXT
@@ -1,3 +1,4 @@
Fixed issue MR-406 - Items disappear from External Tools toolbar when accessing External Tools panel
Fixed issue MR-410 - Unhandled exception when clicking New button under Theme

1.71 Beta 2 (2013-03-19):
Expand Down
4 changes: 2 additions & 2 deletions mRemoteV1/Forms/frmMain.vb
Expand Up @@ -286,8 +286,8 @@ Public Class frmMain

Public Sub AddExternalToolsToToolBar()
Try
For Each item As ToolStripItem In tsExternalTools.Items
item.Dispose()
For index As Integer = tsExternalTools.Items.Count - 1 To 0 Step -1
tsExternalTools.Items(index).Dispose()
Next
tsExternalTools.Items.Clear()

Expand Down

0 comments on commit 08ddee1

Please sign in to comment.