Skip to content

Commit f0a7b37

Browse files
authored
Merge pull request #57 from hell-racer/master
Fix for #56
2 parents e739f4e + 06016d0 commit f0a7b37

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Source/ExcelDna.IntelliSense/UIMonitor/UIMonitor.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,8 @@ void _formulaEditWatcher_StateChanged(object sender, FormulaEditWatcher.StateCha
108108
{
109109
if (CurrentState is UIState.FunctionList)
110110
{
111-
// We'll update stuff in the PopupList change handler
112-
// var newState = ((UIState.FunctionList)CurrentState).WithBounds(_formulaEditWatcher.EditWindowBounds);
113-
// OnStateChanged(newState);
111+
var newState = ((UIState.FunctionList)CurrentState).WithBounds(_formulaEditWatcher.EditWindowBounds);
112+
OnStateChanged(newState);
114113
return;
115114
}
116115
if (CurrentState is UIState.FormulaEdit)

0 commit comments

Comments
 (0)