| 941 | } |
| 942 | |
| 943 | void BrowserWindow::processNumObjectsField(NetworkResourceTreeTO const& treeTO, bool kobjects) |
| 944 | { |
| 945 | if (treeTO->isLeaf()) { |
| 946 | auto& leaf = treeTO->getLeaf(); |
| 947 | if (kobjects) { |
| 948 | AlienImGui::Text(StringHelper::format(leaf.rawTO->particles / 1000) + " K"); |
| 949 | } else { |
| 950 | AlienImGui::Text(StringHelper::format(leaf.rawTO->particles)); |
| 951 | } |
| 952 | } |
| 953 | } |
| 954 | |
| 955 | void BrowserWindow::processSizeField(NetworkResourceTreeTO const& treeTO, bool kbyte) |
| 956 | { |