mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 17:33:05 +00:00
fix: 任务栏插件不支持在触摸屏滚动显示
修复控制中心的任务栏插件在触摸屏上不能滚动显示的问题。 Log: 修复控制中心任务栏设置不能在触摸屏上滚动显示的问题。 Bug: https://pms.uniontech.com/zentao/bug-view-112173.html Influence: 任务栏插件在触摸屏上滚动显示的场景。 Change-Id: I375262f818c018e0f047da91a767faddf78e1ca0
This commit is contained in:
parent
e8202c9dec
commit
da39234fb4
@ -361,6 +361,13 @@ void ModuleWidget::initUI()
|
||||
}
|
||||
}
|
||||
|
||||
// 支持在触摸屏上滚动
|
||||
QScroller::grabGesture(this->window(), QScroller::LeftMouseButtonGesture);
|
||||
QScroller *scroller = QScroller::scroller(this->window());
|
||||
QScrollerProperties sp;
|
||||
sp.setScrollMetric(QScrollerProperties::VerticalOvershootPolicy, QScrollerProperties::OvershootAlwaysOff);
|
||||
scroller->setScrollerProperties(sp);
|
||||
|
||||
// 保持内容正常铺满
|
||||
layout->addStretch();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user