revert(workspaces): ipc command out of update func

This commit is contained in:
Alexis 2018-08-20 00:19:27 +02:00
parent 8ce33e0c64
commit b7e3d10fb7
1 changed files with 3 additions and 2 deletions

View File

@ -20,6 +20,9 @@ waybar::modules::sway::Workspaces::Workspaces(Bar &bar, Json::Value config)
} else if (!workspaces_.empty()) {
ipcRecvResponse(ipc_eventfd_);
}
std::lock_guard<std::mutex> lock(mutex_);
auto res = ipcSingleCommand(ipcfd_, IPC_GET_WORKSPACES, "");
workspaces_ = parser_.parse(res.payload);
thread_.emit();
} catch (const std::exception& e) {
std::cerr << e.what() << std::endl;
@ -36,8 +39,6 @@ waybar::modules::sway::Workspaces::~Workspaces()
auto waybar::modules::sway::Workspaces::update() -> void
{
std::lock_guard<std::mutex> lock(mutex_);
auto res = ipcSingleCommand(ipcfd_, IPC_GET_WORKSPACES, "");
workspaces_ = parser_.parse(res.payload);
bool needReorder = false;
for (auto it = buttons_.begin(); it != buttons_.end();) {
auto ws = std::find_if(workspaces_.begin(), workspaces_.end(),