mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-06-25 20:07:51 +02:00
Switched to ImGui::TextUnfort
This commit is contained in:
@ -478,7 +478,7 @@ private:
|
||||
// Bookmark delete confirm dialog
|
||||
// List delete confirmation
|
||||
if (ImGui::GenericDialog(("freq_manager_del_list_confirm" + _this->name).c_str(), _this->deleteBookmarksOpen, GENERIC_DIALOG_BUTTONS_YES_NO, [_this]() {
|
||||
ImGui::Text("Deleting selected bookmaks. Are you sure?");
|
||||
ImGui::TextUnformatted("Deleting selected bookmaks. Are you sure?");
|
||||
}) == GENERIC_DIALOG_BUTTON_YES) {
|
||||
for (auto& _name : selectedNames) { _this->bookmarks.erase(_name); }
|
||||
_this->saveByName(_this->selectedListName);
|
||||
|
@ -183,7 +183,7 @@ private:
|
||||
_this->startServer();
|
||||
}
|
||||
|
||||
ImGui::Text("Status:");
|
||||
ImGui::TextUnformatted("Status:");
|
||||
ImGui::SameLine();
|
||||
if (_this->client && _this->client->isOpen()) {
|
||||
ImGui::TextColored(ImVec4(0.0, 1.0, 0.0, 1.0), "Connected");
|
||||
@ -192,7 +192,7 @@ private:
|
||||
ImGui::TextColored(ImVec4(1.0, 1.0, 0.0, 1.0), "Listening");
|
||||
}
|
||||
else {
|
||||
ImGui::Text("Idle");
|
||||
ImGui::TextUnformatted("Idle");
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -114,7 +114,7 @@ private:
|
||||
}
|
||||
|
||||
ImGui::TableSetColumnIndex(1);
|
||||
ImGui::Text("todo");
|
||||
ImGui::TextUnformatted("todo");
|
||||
}
|
||||
ImGui::EndTable();
|
||||
}
|
||||
|
@ -60,7 +60,7 @@ public:
|
||||
// Fill rows here
|
||||
ImGui::TableNextRow();
|
||||
ImGui::TableSetColumnIndex(0);
|
||||
ImGui::Text("Every day at 00:00:00");
|
||||
ImGui::TextUnformatted("Every day at 00:00:00");
|
||||
|
||||
ImGui::EndTable();
|
||||
}
|
||||
|
Reference in New Issue
Block a user