swayfx/sway/commands/new_float.c

9 lines
289 B
C
Raw Normal View History

#include "log.h"
2016-09-03 05:11:48 +10:00
#include "sway/commands.h"
2016-09-02 12:39:08 +10:00
struct cmd_results *cmd_new_float(int argc, char **argv) {
sway_log(L_INFO, "`new_float` is deprecated and will be removed in the future. "
"Please use `default_floating_border` instead.");
return cmd_default_floating_border(argc, argv);
2016-09-02 12:39:08 +10:00
}