~unity-team/unity8/splash-timer

« back to all changes in this revision

Viewing changes to tests/plugins/Dash/cardcreator/5.res

Make the categoryView invisible when we are in the preview mode
 Fixes: 1341205
Approved by: Andrea Cimitan

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
                                            width = root.fixedArtShapeSize.width; 
41
41
                                            height = root.fixedArtShapeSize.height; 
42
42
                                        } else { 
43
 
                                            width = Qt.binding(function() { return !visible ? 0 : image.width });
44
 
                                            height = Qt.binding(function() { return !visible ? 0 : image.height });
45
 
                                        } 
 
43
                                            width = Qt.binding(function() { return image.status !== Image.Ready ? 0 : image.width });
 
44
                                            height = Qt.binding(function() { return image.status !== Image.Ready ? 0 : image.height });
 
45
                                        }
46
46
                                    } 
47
47
                                    image: Image { 
48
48
                                        objectName: "artImage";