Hi, Python-prompt-toolkit doesn't show the current option for checkboxlist_dialog when using Windows Terminal. **Windows Terminal:**  **cmd.exe:**  Sample code: ``` from prompt_toolkit.shortcuts import checkboxlist_dialog, yes_no_dialog results_array = checkboxlist_dialog( title="Tags", text="Please select tags to add:", values=[ ("tag1", "tag1"), ("tag2", "tag2"), ("tag3", "tag3"), ], ).run() ```