| layershellv1window.cpp | layershellv1window.cpp | |||
|---|---|---|---|---|
| skipping to change at line 215 | skipping to change at line 215 | |||
| return AboveLayer; | return AboveLayer; | |||
| case LayerSurfaceV1Interface::OverlayLayer: | case LayerSurfaceV1Interface::OverlayLayer: | |||
| return UnmanagedLayer; | return UnmanagedLayer; | |||
| default: | default: | |||
| Q_UNREACHABLE(); | Q_UNREACHABLE(); | |||
| } | } | |||
| } | } | |||
| bool LayerShellV1Window::acceptsFocus() const | bool LayerShellV1Window::acceptsFocus() const | |||
| { | { | |||
| return m_shellSurface->acceptsFocus(); | return !isDeleted() && m_shellSurface->acceptsFocus(); | |||
| } | } | |||
| void LayerShellV1Window::moveResizeInternal(const QRectF &rect, MoveResizeM ode mode) | void LayerShellV1Window::moveResizeInternal(const QRectF &rect, MoveResizeM ode mode) | |||
| { | { | |||
| if (areGeometryUpdatesBlocked()) { | if (areGeometryUpdatesBlocked()) { | |||
| setPendingMoveResizeMode(mode); | setPendingMoveResizeMode(mode); | |||
| return; | return; | |||
| } | } | |||
| const QSizeF requestedClientSize = frameSizeToClientSize(rect.size()); | const QSizeF requestedClientSize = frameSizeToClientSize(rect.size()); | |||
| End of changes. 1 change blocks. | ||||
| 1 lines changed or deleted | 1 lines changed or added | |||
This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/ | ||||