Questions tagged [visual-glitch]

This tag is used for problems in the implementation of GUI behavior.

Questions regarding the implementation of user interfaces would usually concern GUI libraries like Swing, Kivy, PySDL, Android, and iOS. Browser-based questions are also welcome.

203 questions
2
votes
2 answers

SurfaceView inside Dialog (or Activity with Theme.Dialog) has layout glitch

I'm trying to show a SurfaceView inside an Activity that has a theme that extends Theme.Dialog (you can think as I'm trying to show it inside a Dialog class), but I'm having some layout glitch. I couldn't make a picture because the glitch vanish…
dmarcato
  • 872
  • 8
  • 16
2
votes
2 answers

canvas line glitch

when draw a line in canvas using path i getting little glitch as in picture below...i'm new to android development..i know i'm making some silly mistake i don't know what it is...if anyone hav an idea help me..thanks my path code is …
Akilan
  • 924
  • 1
  • 7
  • 19
2
votes
1 answer

Ensure smooth Storyboard animation when UI Thread is blocked

In my WP8 application I have a UserControl with an active Storyboard animation that makes that UserControl to move in a desired direction. At some point during that animation I programmatically add second UserControl to the scene. The problem is…
src091
  • 2,807
  • 7
  • 44
  • 74
1
vote
1 answer

SwiftUI - ViewThatFits ruins animation

The following SwiftUI view demonstrates an animation glitch that seems to be caused by ViewThatFits. To see the issue, render the following view and tap on the red section. To see that it works without the ViewThatFits tap on the blue section. To be…
jeremyabannister
  • 3,796
  • 3
  • 16
  • 25
1
vote
2 answers

How can I resolve the problem of screen shaking?

Whenever I hover over between the text and pizza image in the following code block, the div starts shaking until I hover it over either one of the elements, i.e., the image or the text. .maincontent img { opacity: 0.8; overflow: hidden; …
JayVT
  • 13
  • 3
1
vote
1 answer

Tkinter's root window recreates automatically after calling root.resizable()

Root window 'rebuilds' after calling root.resizable. This cause visual glitch, in which window looks like it was minimized and instantly normalized in around 100 msec. I tried to use withdraw + deiconify (like here: Tkinter, Flashing Window after…
MIku
  • 89
  • 6
1
vote
0 answers

Python MatPlotLib Issue: Error in Visualisation of a Polar Contour Plot

I am writing a program using Python and MatPlotLib and have encountered an issue with creating a contour polar plot. Here is the code I have so far: from math import sin, cos, radians, sqrt, pi import numpy as np import matplotlib.pyplot…
mar_addis
  • 11
  • 1
1
vote
0 answers

Python DASH chart glitch on update?

I want to create a graphical terminal like a tradingview. For this, I use plotly dash to make the display as comfortable as possible. But a situation arose that I have been unable to resolve for several days now. Now my code looks like this: import…
Slyly Sly
  • 21
  • 3
1
vote
1 answer

Visual Glitch with Conic-Gradient

I am trying to make a simple conic-gradient with css, but there is a strange horizontal line appearing. The lines are unpredictable and sometimes go away when the window is resized. div { width: 101.5px; height: 101.5px; background:…
Quincy Nash
  • 141
  • 1
  • 6
1
vote
2 answers

SwiftUI button glitches on keyboard dismiss

I have a button on my view that, when pressed, calls a hideKeyboard function which is the following: func hideKeyboard() { let resign = #selector(UIResponder.resignFirstResponder) UIApplication.shared.sendAction(resign, to: nil, from: nil,…
koza
  • 71
  • 1
  • 2
  • 13
1
vote
1 answer

VS Code clear previous output before each run

Extensions installed: Python, Code Runner The problem is I was trying to enable the "clear previous output before each run setting" But when I try running a simple code the output (in terminal) becomes glitchy. The code I am running…
1
vote
0 answers

A huge glitch occurs during tableView scrolls to top

Please help and give me an advise about my problem. Hello guys! I have navigationBar (top white area) + custom HeaderView (orange area) + TableView (green/yellow area) While scrolling table up my customHeaderView should be scrolling too, here I set…
denickman
  • 29
  • 4
1
vote
0 answers

React Native Flatlist custom refresh control with Lottie is glitchy

I'm trying to implement a custom refresher animation to my app and im almost there. It just seems like i can't fix this glitch but I know it's possible because the native RefreshControl is so smooth. Here is a video of what I currently have:…
frankied003
  • 466
  • 6
  • 26
1
vote
1 answer

Page has a weird font glitch on refresh

So I've built a HTML page but I'm getting this weird bug where when I refresh the page, for a split second after refresh I can see the basic font, and afterwards it changes to the one I've applied from Google fonts. I've checked my code a thousand…
Andra
  • 61
  • 1
  • 9
1
vote
1 answer

Using UIScrollView with a minimum content top anchor causes visual glitch

I have a scroll view in which I have a content view. I set the scroll view's top anchor to be just above the bottom of an image. I set the content view's top anchor to actually be at the bottom of the image. That way you can pull down on the content…
Slaknation
  • 2,124
  • 3
  • 23
  • 42