mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-05-15 20:17:59 +00:00
fix(Form/ExclusiveButtons.spec.qml): avoid invalid size QSize(0, 0) warning
This commit is contained in:
parent
a6808e6399
commit
521b9681b1
1 changed files with 4 additions and 0 deletions
|
|
@ -6,6 +6,10 @@ import QtTest 1.1
|
|||
Item {
|
||||
id: root
|
||||
|
||||
// Avoid `Test 'XXX' has invalid size QSize(0, 0), resizing.` warning.
|
||||
height: 100
|
||||
width: 300
|
||||
|
||||
Component {
|
||||
id: builder
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue