mirror of
https://github.com/DreamSourceLab/DSView.git
synced 2025-01-23 13:42:55 +08:00
fix: The height of bottom bar is small, so the\n information unable to show well
This commit is contained in:
parent
0edc9d26c0
commit
a8b359d43f
@ -159,6 +159,13 @@ View::View(SigSession *session, pv::toolbars::SamplingBar *sampling_bar, QWidget
|
|||||||
_viewbottom = new ViewStatus(_session, *this);
|
_viewbottom = new ViewStatus(_session, *this);
|
||||||
_viewbottom->setFixedHeight(StatusHeight);
|
_viewbottom->setFixedHeight(StatusHeight);
|
||||||
layout->addWidget(_viewbottom, 1, 0);
|
layout->addWidget(_viewbottom, 1, 0);
|
||||||
|
|
||||||
|
#ifdef Q_OS_DARWIN
|
||||||
|
QWidget *lineSpan = new QWidget(this);
|
||||||
|
lineSpan->setFixedHeight(10);
|
||||||
|
layout->addWidget(lineSpan, 2, 0);
|
||||||
|
#endif
|
||||||
|
|
||||||
setViewport(_viewcenter);
|
setViewport(_viewcenter);
|
||||||
|
|
||||||
_time_viewport->installEventFilter(this);
|
_time_viewport->installEventFilter(this);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user