From 358e81c174baf055fc0a36bc49f1acf8a642d9f3 Mon Sep 17 00:00:00 2001 From: HikariKnight <2557889+HikariKnight@users.noreply.github.com> Date: Sat, 8 Apr 2023 04:58:46 +0200 Subject: [PATCH] Change first line to be a title on welcome screen --- internal/tuimode/tuimode.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/tuimode/tuimode.go b/internal/tuimode/tuimode.go index 0f3bc84..8e7bb30 100644 --- a/internal/tuimode/tuimode.go +++ b/internal/tuimode/tuimode.go @@ -295,8 +295,8 @@ func (m model) View() string { case INTRO: title = dialogStyle.Render( fmt.Sprint( - "Welcome to QuickPassthrough!\n", - "\n", + titleStyle.Render("Welcome to QuickPassthrough!"), + "\n\n", "This script is meant to make it easier to setup GPU passthrough for Qemu systems.\n", "However due to the complexity of GPU passthrough, this script assumes you know how to do (or have done) the following.\n\n", "* You have already enabled IOMMU, VT-d, SVM and/or AMD-v\n inside your UEFI/BIOS advanced settings.\n",