Use <action name="AutoPlace" policy="cursor"/> instead.
Related-to: #1785
Suggested-by: @tokyo4j
*<action name="MoveToCursor" />*
Move to be centered on cursor.
Tries to prevent any part of the window from going off-screen.
+ This action is deprecated from v0.7.3. To ensure your config works in
+ future labwc releases, please use:
+ *<action name="AutoPlace" policy="cursor">*
*<action name="MoveRelative" x="" y="" />*
Move window relative to its current position. Positive value of x moves
}
break;
case ACTION_TYPE_MOVETO_CURSOR:
+ wlr_log(WLR_ERROR,
+ "Action MoveToCursor is deprecated. To ensure your config works in future labwc "
+ "releases, please use <action name=\"AutoPlace\" policy=\"cursor\">");
if (view) {
view_move_to_cursor(view);
}