disable workspace-level move operations (not yet implemented) (Thanks mseed)

This commit is contained in:
Michael Stapelberg 2011-02-01 16:59:02 +01:00
parent 9b01b1a7a6
commit 97ab44b3d8
1 changed files with 5 additions and 0 deletions

View File

@ -474,6 +474,11 @@ void con_toggle_fullscreen(Con *con) {
*
*/
void con_move_to_workspace(Con *con, Con *workspace) {
if (con->type == CT_WORKSPACE) {
DLOG("Moving workspaces is not yet implemented.\n");
return;
}
if (con_is_floating(con)) {
DLOG("Using FLOATINGCON instead\n");
con = con->parent;