| 185 | } |
| 186 | |
| 187 | void BrowserWindow::processIntern() |
| 188 | { |
| 189 | processToolbar(); |
| 190 | |
| 191 | auto startPos = ImGui::GetCursorScreenPos(); |
| 192 | |
| 193 | if (ImGui::BeginChild("##workspaceAndUserList", {0, -scale(5.0f)}, 0, ImGuiWindowFlags_NoScrollbar)) { |
| 194 | processWorkspace(); |
| 195 | |
| 196 | ImGui::SameLine(); |
| 197 | processVerticalMovableSeparator(); |
| 198 | |
| 199 | ImGui::SameLine(); |
| 200 | processUserList(); |
| 201 | |
| 202 | processStatusBar(); |
| 203 | } |
| 204 | ImGui::EndChild(); |
| 205 | |
| 206 | processRefreshingScreen({startPos.x, startPos.y}); |
| 207 | |
| 208 | processEmojiWindow(); |
| 209 | } |
| 210 | |
| 211 | void BrowserWindow::processBackground() |
| 212 | { |