diff --git a/clients/web/Web.cpp b/clients/web/Web.cpp index db8e2793e7..09edec2fef 100644 --- a/clients/web/Web.cpp +++ b/clients/web/Web.cpp @@ -260,6 +260,9 @@ Web::mousePosition(const QPoint & p) const if (y < titleSpacer_->geometry().height()) { + // rikkus: this style is not designed to be resizable at the top edge. + +#if 0 if ((y < 4 && x < 20) || x < 4) return Client::TopLeft; else if ((y < 4 && x > width() - 20) || x > width() - 4) @@ -267,6 +270,7 @@ Web::mousePosition(const QPoint & p) const else if (y < 4) return Client::Top; else +#endif return Client::Center; } else if (y < height() - 20)