We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c2e29dc + 99c7bd7 commit c77c5afCopy full SHA for c77c5af
include/i3ipc++/ipc.hpp
@@ -111,6 +111,7 @@ enum class BorderStyle : char {
111
UNKNOWN = '?', //< If got an unknown border style in reply
112
NONE = 'N',
113
NORMAL = 'n',
114
+ PIXEL = 'P',
115
ONE_PIXEL = '1',
116
};
117
src/ipc.cpp
@@ -76,6 +76,8 @@ static std::shared_ptr<container_t> parse_container_from_json(const Json::Value
76
container->border = BorderStyle::NORMAL;
77
} else if (border == "none") {
78
container->border = BorderStyle::NONE;
79
+ } else if (border == "pixel") {
80
+ container->border = BorderStyle::PIXEL;
81
} else if (border == "1pixel") {
82
container->border = BorderStyle::ONE_PIXEL;
83
} else {
0 commit comments