diff options
Diffstat (limited to 'src/getsuyomi.cpp')
-rw-r--r-- | src/getsuyomi.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/getsuyomi.cpp b/src/getsuyomi.cpp index 5593758..4e1e91e 100644 --- a/src/getsuyomi.cpp +++ b/src/getsuyomi.cpp @@ -5,11 +5,15 @@ namespace getsuyomi { Getsuyomi::Getsuyomi() { - m_layout = new QVBoxLayout(); + m_layout = new QHBoxLayout(); + + m_layout->addStretch(); m_layout->addWidget(&m_pageLeft); m_layout->addWidget(&m_pageRight); + m_layout->addStretch(); + setLayout(m_layout); } |