@@ -144,12 +144,12 @@ ApplicationWindow {
144
144
width: 150 ; height: 20
145
145
Text {
146
146
text: model .name
147
- font .pointSize : 13
147
+ font .pixelSize : 13
148
148
anchors .centerIn : parent
149
149
}
150
150
151
151
Text {
152
- font .pointSize : 13
152
+ font .pixelSize : 13
153
153
font .family : " FontAwesome"
154
154
text: FontAwesome .Icon .ChevronRight
155
155
anchors .right : parent .right
@@ -205,7 +205,7 @@ ApplicationWindow {
205
205
width: 150 ; height: 20
206
206
Text {
207
207
text: model .modelData .resolution .width + ' x' + model .modelData .resolution .height
208
- font .pointSize : 13
208
+ font .pixelSize : 13
209
209
anchors .centerIn : parent
210
210
}
211
211
@@ -255,7 +255,7 @@ ApplicationWindow {
255
255
width: 150 ; height: 20
256
256
Text {
257
257
text: model .modelData .channels + ' channels'
258
- font .pointSize : 13
258
+ font .pixelSize : 13
259
259
anchors .centerIn : parent
260
260
}
261
261
@@ -305,7 +305,7 @@ ApplicationWindow {
305
305
width: 150 ; height: 20
306
306
Text {
307
307
text: model .modelData .language
308
- font .pointSize : 13
308
+ font .pixelSize : 13
309
309
anchors .centerIn : parent
310
310
}
311
311
@@ -344,7 +344,7 @@ ApplicationWindow {
344
344
345
345
Text {
346
346
id : openmedia
347
- font .pointSize : 17
347
+ font .pixelSize : 17
348
348
font .family : " FontAwesome"
349
349
text: FontAwesome .Icon .FolderOpen
350
350
@@ -360,7 +360,7 @@ ApplicationWindow {
360
360
361
361
Text {
362
362
anchors .centerIn : parent
363
- font .pointSize : 17
363
+ font .pixelSize : 17
364
364
font .family : " FontAwesome"
365
365
text: FontAwesome .Icon .StepBackward
366
366
}
@@ -382,15 +382,15 @@ ApplicationWindow {
382
382
PropertyChanges {
383
383
target: playbutton
384
384
text: FontAwesome .Icon .PlayCircle
385
- font .pointSize : 25
385
+ font .pixelSize : 25
386
386
}
387
387
},
388
388
State {
389
389
name: " pause"
390
390
PropertyChanges {
391
391
target: playbutton
392
392
text: FontAwesome .Icon .Pause
393
- font .pointSize : 17
393
+ font .pixelSize : 17
394
394
}
395
395
}
396
396
]
@@ -417,7 +417,7 @@ ApplicationWindow {
417
417
418
418
Text {
419
419
anchors .centerIn : parent
420
- font .pointSize : 17
420
+ font .pixelSize : 17
421
421
font .family : " FontAwesome"
422
422
text: FontAwesome .Icon .StepForward
423
423
}
@@ -429,7 +429,7 @@ ApplicationWindow {
429
429
Text {
430
430
id: timelabel
431
431
anchors .centerIn : parent
432
- font .pointSize : 13
432
+ font .pixelSize : 13
433
433
color: " black"
434
434
text: {
435
435
var current = new Date (Math .floor (slider .value / 1e6 ));
@@ -445,7 +445,7 @@ ApplicationWindow {
445
445
anchors .centerIn : parent
446
446
width: parent .width
447
447
text: player .mediaInfo .title
448
- font .pointSize : 15
448
+ font .pixelSize : 15
449
449
elide: Text .ElideRight
450
450
}
451
451
}
@@ -456,7 +456,7 @@ ApplicationWindow {
456
456
Text {
457
457
id: durationlabel
458
458
anchors .centerIn : parent
459
- font .pointSize : 13
459
+ font .pixelSize : 13
460
460
color: " black"
461
461
text: {
462
462
var duration = new Date (Math .floor (player .duration / 1e6 ));
@@ -467,7 +467,7 @@ ApplicationWindow {
467
467
468
468
Text {
469
469
id: sub
470
- font .pointSize : 17
470
+ font .pixelSize : 17
471
471
font .family : " FontAwesome"
472
472
text: FontAwesome .Icon .ClosedCaptions
473
473
color: player .subtitleEnabled ? " red" : " black"
@@ -487,7 +487,7 @@ ApplicationWindow {
487
487
Text {
488
488
id : volume
489
489
anchors .centerIn : parent
490
- font .pointSize : 17
490
+ font .pixelSize : 17
491
491
font .family : " FontAwesome"
492
492
text: {
493
493
if (volumeslider .value > volumeslider .maximumValue / 2 ) {
@@ -585,7 +585,7 @@ ApplicationWindow {
585
585
586
586
Text {
587
587
id: cog
588
- font .pointSize : 17
588
+ font .pixelSize : 17
589
589
font .family : " FontAwesome"
590
590
text: FontAwesome .Icon .Cog
591
591
@@ -604,7 +604,7 @@ ApplicationWindow {
604
604
605
605
Text {
606
606
id : fullscreen
607
- font .pointSize : 17
607
+ font .pixelSize : 17
608
608
font .family : " FontAwesome"
609
609
text: FontAwesome .Icon .ResizeFull
610
610
@@ -661,7 +661,7 @@ ApplicationWindow {
661
661
x: sliderMouseArea .mouseX
662
662
663
663
Text {
664
- font .pointSize : 13
664
+ font .pixelSize : 13
665
665
color: " black"
666
666
anchors .centerIn : parent
667
667
text: {
0 commit comments