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
5
votes
2 answers

Workaround for webkit overlapping glitch

After working on a page for some months, I noticed a weird behavior in webkit based browsers. I implemented an input element with a technic I asked here Create quadrilateral with specific degree Everything works fine in all browsers, except webkit.…
Noim
  • 445
  • 1
  • 3
  • 20
5
votes
1 answer

Table View Cells changing colors when scrolling Swift

I'm making an app that uses colored table view cells to separate other cells into categories. I am doing this by coloring the cells different colors using if else statements. But for some reason, when I launch the app, the more I scroll up and down…
zach2161
  • 113
  • 11
5
votes
1 answer

JavaFX graphic glitch (white boxes)

I experienced a graphic glitch developing a JavaFX application. Here is how it should look: Here is the glitch: At first the context ... After button "Ausführen" (Execute) is pressed a second thread starts doing something and a progress bar shows…
Josh
  • 83
  • 6
5
votes
1 answer

Android UI glitch when setting ActionBar color

Together with friends I have created an Android app and I have a strange issue connected with the UI. When switching between fragments sometimes the UI tends to scramble, create a glitch displayed below. It happens on my Nexus 5 with Dalvik…
4
votes
4 answers

Vanishing NSTextField Text

I have a custom view in a .xib file, which I use as the contentViewController for an MAAttachedWindow. The view has several NSTextFields in it. When I open the MAAttachedWindow first time, everything is fine. Text shows up in all relevant text…
Patrick Perini
  • 22,555
  • 12
  • 59
  • 88
4
votes
3 answers

`backdrop-filter: blur()` using Google-Chrome on MacOS causes unwanted artifacts

My team and I have come across this visual-glitch using Google Chrome. I have isolated the visual-glitch to its most simple elements. Recreate the glitch by making a new .html file with the following code below and opening it in chrome. My Current…
James Essex
  • 253
  • 3
  • 9
4
votes
3 answers

Android Studio not recognizing String

I've encountered a weird glitch in Android Studio: As you can see it thinks that it is an error: 'class' or 'interface' expected But it runs and build just fine, so is this just a visual glitch or can it have any effect during compiling? I'm…
3
votes
2 answers

iPhone Custom UISlider preload and rounded edges issues

I'm trying to implement a custom UISlider, I've extended it with a class called UISliderCustom which has the following code: @implementation UISliderCustom - (id)initWithCoder:(NSCoder *)aDecoder{ if(self == [super initWithCoder:aDecoder]){ …
Shai Mishali
  • 9,224
  • 4
  • 56
  • 83
3
votes
0 answers

how can I create glitch effect in GIF from a normal image

create images with different different background image UIImage *face_image = [UIImage imageNamed:@"face.png"]; UIImage *bg_1 = [UIImage imageNamed:@"bg_1.png"]; [bg_1 drawInRect:CGRectMake(0,0,Width_Img, Height_Img)]; [face_image…
Jay sharma
  • 67
  • 4
3
votes
1 answer

CSS fixed header overlapped by elements only when they are transparent

I'm working on this website template and I keep running into issues. My biggest one right now is that when the fixed header goes over the content boxes, the semi-transparent boxes overlap the header until the user hovers over the box and causes it…
RyanPM
  • 33
  • 1
  • 3
3
votes
1 answer

SWT drop down menu button visual glitch

I am having trouble with a visual glitch on my two drop down menus in my toolbar. When I: Scroll my mouse pointer over the File drop down menu button... Scroll across to the Options drop down menu button... Scroll off the toolbar…
James Allison
  • 135
  • 10
3
votes
1 answer

iOS 7 Navigation Bar Jump on Flip Horizontal Segue

In my app when I transition both to and from navigation controllers with nav bars in iOS 7, the bars jump about 20px at the end of the animation. I know that this is a bug that has been discussed here before, but the solution offered up:…
harryisaac
  • 1,121
  • 1
  • 10
  • 18
3
votes
1 answer

Graphical glitch occuring in XNA on Windows Phone 7 in Landscape orientation

I've been working on a cross-platform framework/abstraction-layer for a number of months now, based on the XNA framework for WP7 and Mono for Android and iOS. Having got the majority of functionality working for Android, I have recently returned to…
Nathan Runge
  • 303
  • 2
  • 10
2
votes
0 answers

Chrome + webkit translate3d, mangles images

This is a bit weird. When I apply -webkit-transform: translate3d(0px, 0px, 0px); to images on a site I am building, they look fine initially. But when I start scrolling or resize the browser window to above a certain size (roughly past 1200x1024)…
Kasper
  • 1,282
  • 4
  • 20
  • 39
2
votes
1 answer

Why does my html body move to the left every time I refresh?

This is one of the weirdest bugs I've ever encountered. Some chance it's an extension or a browser bug or something but it only shows up on the app I'm building when I'm refreshing it in development mode, so stackoverflow seems like the right place…
MalcolmOcean
  • 2,807
  • 2
  • 29
  • 38
1
2
3
13 14