We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e4eaee commit ce402b5Copy full SHA for ce402b5
smarttubetv/src/main/java/com/liskovsoft/smartyoutubetv2/tv/ui/browse/video/MultiVideoGridFragment.java
@@ -122,9 +122,16 @@ public void selectItem(Video item) {
122
public void update(VideoGroup group) {
123
if (group.getPosition() == 0) {
124
addSearchHeader();
125
- //freeze1(true); // bug: severe ui glitches
+
126
+ // Smooth remove animation
127
+ if (group.getAction() == VideoGroup.ACTION_REMOVE) {
128
+ updateGroup1(group);
129
+ return;
130
+ }
131
132
+ freeze1(true);
133
updateGroup1(group);
- //freeze1(false); // bug: severe ui glitches
134
+ freeze1(false);
135
} else if (group.getPosition() == 1) {
136
int action = group.getAction();
137
0 commit comments