bilagaana@lemmy.worldtoBoost For Lemmy@lemmy.world•Early Access: Become a tester for Boost for Lemmy and share your feedback 🚀English
1·
1 year agoA minor ui glitch(?)
When scrolling through posts I noticed that occasionally the post summary would slightly scroll up cropping the first line in the summary.
After playing with it for a few minutes, I can reproduce the behavior by pressing on the summary, holding the press and dragging left or right, continuing to hold the press and dragging up or down.
It seems I tend to scroll with a slight diagonal motion instead of a pure up and down motion.
Screen shots showing the glitch: The post in godot@programming.dev, the “hey guys…” line gets scrolled off screen with the “diagonal scroll motion”
Normal post look
Glitched look
If you modify your ./vs code/launch.json to include the
"console": "external terminal"
parameter, it will accomplish what you are looking for.{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "Launch file", "type": "go", "request": "launch", "mode": "debug", "program": "${workspaceFolder}/main.go", "console": "externalTerminal", }, ] }