You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
289 B
9 lines
289 B
8 years ago
|
#include "log.h"
|
||
8 years ago
|
#include "sway/commands.h"
|
||
8 years ago
|
|
||
|
struct cmd_results *cmd_new_float(int argc, char **argv) {
|
||
8 years ago
|
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);
|
||
8 years ago
|
}
|