diff --git a/scripts/songselect/songwheel.lua b/scripts/songselect/songwheel.lua index 6c8097c..8492548 100644 --- a/scripts/songselect/songwheel.lua +++ b/scripts/songselect/songwheel.lua @@ -623,6 +623,10 @@ end function drawFilterInfo(deltatime) gfx.LoadSkinFont('NotoSans-Regular.ttf') + if (songwheel.searchInputActive) then + return; + end + gfx.BeginPath() gfx.ImageRect(5, 95, 417*0.85, 163*0.85, filterInfoBgImage, 1, 0) @@ -662,12 +666,18 @@ function drawSearch() return; end + gfx.BeginPath(); local tw, th = gfx.ImageSize(searchBgImage) - gfx.ImageRect(desw-tw/2, 0, tw/2, th/2, searchBgImage, 1, 0) + local xPos = desw-tw/2; + local yPos = 90; - gfx.FontSize(28); - gfx.Text(songwheel.searchText, desw-200, 30); + gfx.ImageRect(xPos, yPos, tw/2, th/2, searchBgImage, 1, 0) + + gfx.FontSize(32); + gfx.LoadSkinFont('Digital-Serial-Bold.ttf') + gfx.TextAlign(gfx.TEXT_ALIGN_LEFT + gfx.TEXT_ALIGN_MIDDLE) + gfx.Text(songwheel.searchText, xPos+100, yPos+52); end function refreshIrLeaderboard(deltaTime)