-
Notifications
You must be signed in to change notification settings - Fork 1k
Fixed 'Bug 576819: Extract Interface... OK button is disabled when #4070
Conversation
dialog is initially shown (works in VS2017)' https://devdiv.visualstudio.com/DevDiv/_workitems/edit/576819 Found & fixed an issue with the cell view update as well.
See : |
cc @sevoku |
@@ -108,7 +108,12 @@ public ExtractInterfaceDialog () | |||
listViewPublicMembers.DataSource = treeStore; | |||
var checkBoxCellView = new CheckBoxCellView (symbolIncludedField); | |||
checkBoxCellView.Editable = true; | |||
checkBoxCellView.Toggled += delegate { UpdateOkButton ();}; | |||
checkBoxCellView.Toggled += delegate { | |||
GLib.Timeout.Add (20, delegate { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we track this hack in a github issue so we don't forget?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's here : mono/xwt#795
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Created a issue tracking this on our side #4075.
Easier than an issue in xwt with cross references, so we don't lose track of it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not a big thing to track if you ask me - we've some time outs for similiar behaviors. It's not that this code won't run in ~10 years :) - it's even likely that it will because no one cares about working code and refactoring :/
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
dialog is initially shown (works in VS2017)'
https://devdiv.visualstudio.com/DevDiv/_workitems/edit/576819
Found & fixed an issue with the cell view update as well.