Fixed-Size NUI issue with html select element

  1. Client (production/beta/canary) and FXServer version (5848)
  2. What you expected to happen
    The option tag from the html select element should be under the select element as the image shows when Fixed-Size NUI is disabled and using a resolution under 1920X1080
  3. What actually happens
    Fixed-Size NUI: enabled causes the option tag from the html select element to be out of place. Moving the mouse under the select element still allows to select an option even tho they are further to the right
  4. Category of bug (eg. client, server, weapons, peds, native)
    NUI
  5. Reproducible steps, preferably with example script(s)
  6. Enable Fixed-Size NUI
  7. Enter a server and set game to windowed mode with a resolution under 1920X1080, the lower the resolution the greater is the distance between the select and the options
<html lang="en">

<head></head>

<body">
    <select style="position: absolute; top:50%; left:50%">
        <option value="1">HEYO</option>
        <option value="2">HEYO2</option>
        <option value="3">HEYO3</option>
        <option value="4">HEYO4</option>
        <option value="5">HEYO5</option>
        <option value="6">HEYO6</option>
        <option value="7">HEYO7</option>
        <option value="8">HEYO8</option>
        <option value="9">HEYO9</option>
    </select>
  
</body>

</html>
SetNuiFocus(true, true)

Fixed in fix(nui/core): popup rects for fixed-size windows · citizenfx/fivem@42488b7 (github.com)