加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0005-set-stylesheet-to-affect-only-itself.patch 1.21 KB
一键复制 编辑 原始数据 按行查看 历史
diff --git a/nfs-mplayer-1.0.0/src/autohidewidget.cpp b/nfs-mplayer-1.0.0/src/autohidewidget.cpp
index a0bd57c..91836d8 100755
--- a/nfs-mplayer-1.0.0/src/autohidewidget.cpp
+++ b/nfs-mplayer-1.0.0/src/autohidewidget.cpp
@@ -218,7 +218,6 @@ bool AutohideWidget::eventFilter(QObject * obj, QEvent * event) {
else
#endif
if (event->type() == QEvent::MouseMove) {
- //qDebug() << "AutohideWidget::eventFilter: mouse move" << obj;
if (!isVisible()) {
if (activation_area == Anywhere) {
show();
diff --git a/nfs-mplayer-1.0.0/src/defaultgui.cpp b/nfs-mplayer-1.0.0/src/defaultgui.cpp
index 2bf8371..bf8d29a 100755
--- a/nfs-mplayer-1.0.0/src/defaultgui.cpp
+++ b/nfs-mplayer-1.0.0/src/defaultgui.cpp
@@ -1573,10 +1573,10 @@ void DefaultGui::createFloatingControl() {
floating_control = new AutohideWidget(m_controlBar);
floating_control->setAutoHide(true);
floating_control->setFixedHeight(50);
- floating_control->setStyleSheet(""
+ floating_control->setStyleSheet("AutohideWidget {"
"border:none;"
"border-radius: 6px;"
- "background: transparent;");
+ "background: transparent;}");
// 浮动窗口控制栏
EditableToolbar * iw = new EditableToolbar(floating_control);
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化