Skip to content

Commit

Permalink
Re #4282. Fixed dialogs failing to show on double-click
Browse files Browse the repository at this point in the history
  • Loading branch information
mantid-roman committed Jan 13, 2012
1 parent 4058104 commit 3ce4844
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/Mantid/MantidPlot/src/ApplicationWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17505,8 +17505,8 @@ FloatingWindow* ApplicationWindow::addMdiSubWindowAsFloating(MdiSubWindow* w, QP
fw->setMdiSubWindow(w);
fw->resize(sz);
fw->move(pos);
m_floatingWindows.append(fw); // do it before show
fw->show();
m_floatingWindows.append(fw);
return fw;
}

Expand Down

0 comments on commit 3ce4844

Please sign in to comment.