Commit 18e9bd39 authored by Cole Neubauer's avatar Cole Neubauer Committed by Makayla Shepherd
Browse files

Fixed fullscreen tilling issue Fixes #5262

parent 4b9dea16
Loading
Loading
Loading
Loading
+8 −7
Original line number Diff line number Diff line
@@ -182,6 +182,7 @@ namespace Isis {

    for (int i = windowList.size() - 1; i >= 0; i--) {
      QMdiSubWindow *window = windowList[i];
      window->showNormal();
      QRect rect(0, 0, vpSize, vpSize);
      window->setGeometry(rect);
      window->move(position);
+3 −2
Original line number Diff line number Diff line
@@ -19,6 +19,8 @@ namespace Isis {
   *                           between all viewports now. Fixes #195.
   *   @history 2017-07-19 Marjorie Hahn and Tracie Sucharski - Implemented new
   *                           viewport tiling scheme.
   *   @history 2018-01-09 Cole Neubauer - Returns windows to normal state before they are tiled to
   *                           fix fullscreen tiling issue Fixes #5262
   */
  class WindowTool : public Tool {
      Q_OBJECT
@@ -69,4 +71,3 @@ namespace Isis {
};

#endif