diff --git a/src/ToastQueue/ToastQueue.cpp b/src/ToastQueue/ToastQueue.cpp index 60e7351..1f367c6 100644 --- a/src/ToastQueue/ToastQueue.cpp +++ b/src/ToastQueue/ToastQueue.cpp @@ -138,7 +138,9 @@ void ToastQueue::draw(Vector2i viewport_size) { break; } - ImGui::SameLine(); + if(current->type() != Toast::Type::Default) { + ImGui::SameLine(); + } if(current->message().length() > 127) { ImGui::TextColored(colour, "%.*s...", 127, current->message().c_str());