From 0d432961a29d509cd0d1fa80361f04009dcf9c17 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Wed, 19 Mar 2025 03:19:38 +0000 Subject: Remove lots of stuff not required or superseded with ImGui use --- ui/editNetwork.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'ui/editNetwork.cpp') diff --git a/ui/editNetwork.cpp b/ui/editNetwork.cpp index a11fe3c..ac9aef9 100644 --- a/ui/editNetwork.cpp +++ b/ui/editNetwork.cpp @@ -3,16 +3,14 @@ #include "builders/join.h" #include "builders/straight.h" #include "imgui_wrap.h" -#include "text.h" #include #include #include #include -const std::filesystem::path fontpath {"/usr/share/fonts/hack/Hack-Regular.ttf"}; constexpr const glm::u8vec4 TRANSPARENT_BLUE {30, 50, 255, 200}; -EditNetwork::EditNetwork(Network * n) : network {n}, blue {1, 1, &TRANSPARENT_BLUE}, font {fontpath, 15} { } +EditNetwork::EditNetwork(Network * n) : network {n}, blue {1, 1, &TRANSPARENT_BLUE} { } bool EditNetwork::click(const SDL_MouseButtonEvent & e, const Ray & ray) @@ -34,7 +32,7 @@ EditNetwork::move(const SDL_MouseMotionEvent & e, const Ray & } bool -EditNetwork::handleInput(const SDL_Event &, const UIComponent::Position &) +EditNetwork::handleInput(const SDL_Event &) { return false; } @@ -67,7 +65,7 @@ EditNetwork::Builder::setHeightsFor(Network * network, const Link::CCollection & } void -EditNetwork::render(const UIShader &, const UIComponent::Position &) +EditNetwork::render(const UIShader &) { ImGui::Begin("Edit Network"); -- cgit v1.2.3