author | harlekin <harlekin> | 2002-10-18 11:56:52 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-10-18 11:56:52 (UTC) |
commit | d810fe01a5b7356c65c034bfc808688c399dfd81 (patch) (side-by-side diff) | |
tree | 7ad05dbf5dd830752f702ae29ab79ca3d1248669 | |
parent | 24c0ae04669e94d554fe8ef49888ffb5a6a00656 (diff) | |
download | opie-d810fe01a5b7356c65c034bfc808688c399dfd81.zip opie-d810fe01a5b7356c65c034bfc808688c399dfd81.tar.gz opie-d810fe01a5b7356c65c034bfc808688c399dfd81.tar.bz2 |
back from fullscreen now right reparented
-rw-r--r-- | noncore/apps/opie-console/mainwindow.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/noncore/apps/opie-console/mainwindow.cpp b/noncore/apps/opie-console/mainwindow.cpp index 55e9836..27407d9 100644 --- a/noncore/apps/opie-console/mainwindow.cpp +++ b/noncore/apps/opie-console/mainwindow.cpp @@ -2,4 +2,2 @@ - - #include <qaction.h> @@ -14,4 +12,4 @@ #include <qpe/resource.h> -#include <opie/ofiledialog.h> +#include <opie/ofiledialog.h> @@ -488,5 +486,8 @@ void MainWindow::slotFullscreen() { + + if ( m_isFullscreen ) { - ( m_curSession->widgetStack() )->reparent( m_consoleWindow, 0, QPoint(0,0), false ); + ( m_curSession->widgetStack() )->reparent( savedParentFullscreen, 0, QPoint(0,0), false ); ( m_curSession->widgetStack() )->setFrameStyle( QFrame::Panel | QFrame::Sunken ); + setCentralWidget( m_consoleWindow ); @@ -497,2 +498,3 @@ void MainWindow::slotFullscreen() { } else { + savedParentFullscreen = ( m_curSession->widgetStack() )->parentWidget(); ( m_curSession->widgetStack() )->setFrameStyle( QFrame::NoFrame ); |