diff options
author | Jens Bache-Wiig <[email protected]> | 2010-03-16 16:55:56 +0100 |
---|---|---|
committer | Jens Bache-Wiig <[email protected]> | 2010-03-17 11:23:10 +0100 |
commit | d58184173e84e9e1d22fbf227ce1bb24ae88271d (patch) | |
tree | 89a5290422777c039dc306e29a09d9bf5993f394 /src/plugins/debugger/breakwindow.cpp | |
parent | 0146926f199da36b6c61d522eed54f76461a8e52 (diff) |
Clean up layouts and use minisplitter everywhere
This patch replaces all uses of QSplitter with thin 1-pixel
splitters. I also fixed dock widget layouts in main windows
to do the same. Additionally I had to tweak the tabbars so
they look good in mini splitter layouts to avoid a double
left-border.
Reviewed-by: thorbjorn
Diffstat (limited to 'src/plugins/debugger/breakwindow.cpp')
-rw-r--r-- | src/plugins/debugger/breakwindow.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/debugger/breakwindow.cpp b/src/plugins/debugger/breakwindow.cpp index 6cd9b4841d6..953d1cea250 100644 --- a/src/plugins/debugger/breakwindow.cpp +++ b/src/plugins/debugger/breakwindow.cpp @@ -83,6 +83,7 @@ BreakWindow::BreakWindow(Debugger::DebuggerManager *manager) : m_manager(manager), m_alwaysResizeColumnsToContents(false) { QAction *act = theDebuggerAction(UseAlternatingRowColors); + setFrameStyle(QFrame::NoFrame); setWindowTitle(tr("Breakpoints")); setWindowIcon(QIcon(":/debugger/images/debugger_breakpoints.png")); setAlternatingRowColors(act->isChecked()); |