More fixing
This commit is contained in:
parent
54b997ad61
commit
0ef6d8895f
@ -225,9 +225,7 @@ Page {
|
|||||||
delegate: SmallStationsDelegate {
|
delegate: SmallStationsDelegate {
|
||||||
flagVisible: true
|
flagVisible: true
|
||||||
onClicked: {
|
onClicked: {
|
||||||
console.log("*** CLICKED")
|
|
||||||
if (model.url_resolved !== radioPlayer._url_resolved) {
|
if (model.url_resolved !== radioPlayer._url_resolved) {
|
||||||
console.log("*** URL_RESOLVED")
|
|
||||||
radioPlayer._countrycode = model.countrycode// THIS IS THE FUNCTION DESTROYING AARCH64?!?
|
radioPlayer._countrycode = model.countrycode// THIS IS THE FUNCTION DESTROYING AARCH64?!?
|
||||||
radioPlayer._favicon = model.favicon
|
radioPlayer._favicon = model.favicon
|
||||||
radioPlayer._name = model.name
|
radioPlayer._name = model.name
|
||||||
@ -239,7 +237,6 @@ Page {
|
|||||||
radioPlayer._homepage = model.homepage
|
radioPlayer._homepage = model.homepage
|
||||||
radioPlayer._stationuuid = model.stationuuid
|
radioPlayer._stationuuid = model.stationuuid
|
||||||
radioPlayer.getStationFavorite(model.stationuuid)
|
radioPlayer.getStationFavorite(model.stationuuid)
|
||||||
console.log("*** URL_RESOLVED END")
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -294,9 +291,7 @@ Page {
|
|||||||
delegate: SmallStationsDelegate {
|
delegate: SmallStationsDelegate {
|
||||||
flagVisible: false
|
flagVisible: false
|
||||||
onClicked: {
|
onClicked: {
|
||||||
console.log("*** CLICKED")
|
|
||||||
if (model.url_resolved !== radioPlayer._url_resolved) {
|
if (model.url_resolved !== radioPlayer._url_resolved) {
|
||||||
console.log("*** URL_RESOLVED")
|
|
||||||
radioPlayer._countrycode = model.countrycode// THIS IS THE FUNCTION DESTROYING AARCH64?!?
|
radioPlayer._countrycode = model.countrycode// THIS IS THE FUNCTION DESTROYING AARCH64?!?
|
||||||
radioPlayer._favicon = model.favicon
|
radioPlayer._favicon = model.favicon
|
||||||
radioPlayer._name = model.name
|
radioPlayer._name = model.name
|
||||||
@ -308,7 +303,6 @@ Page {
|
|||||||
radioPlayer._homepage = model.homepage
|
radioPlayer._homepage = model.homepage
|
||||||
radioPlayer._stationuuid = model.stationuuid
|
radioPlayer._stationuuid = model.stationuuid
|
||||||
radioPlayer.getStationFavorite(model.stationuuid)
|
radioPlayer.getStationFavorite(model.stationuuid)
|
||||||
console.log("*** URL_RESOLVED END")
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -8,7 +8,7 @@ Page {
|
|||||||
property string filterby
|
property string filterby
|
||||||
property alias searchby: getCountryStations.order
|
property alias searchby: getCountryStations.order
|
||||||
property string searchtext: ""
|
property string searchtext: ""
|
||||||
property string countrycode: ""
|
property string _countrycode: ""
|
||||||
property int stationCount: 0
|
property int stationCount: 0
|
||||||
property alias name: getCountryStations.name
|
property alias name: getCountryStations.name
|
||||||
property alias tag: getCountryStations.tag
|
property alias tag: getCountryStations.tag
|
||||||
@ -86,7 +86,7 @@ Page {
|
|||||||
height: ccode.height * 0.8
|
height: ccode.height * 0.8
|
||||||
fillMode: Image.PreserveAspectFit
|
fillMode: Image.PreserveAspectFit
|
||||||
smooth: true
|
smooth: true
|
||||||
source: countrycode === "" ? "../images/bycountry_t.png" : "../flags/"+countrycode.toLowerCase()+".png"
|
source: _countrycode === "" ? "../images/bycountry_t.png" : "../flags/"+_countrycode.toLowerCase()+".png"
|
||||||
}
|
}
|
||||||
Label {
|
Label {
|
||||||
id: ccode
|
id: ccode
|
||||||
@ -207,7 +207,7 @@ Page {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Component.onCompleted: {
|
Component.onCompleted: {
|
||||||
getCountryStations.countrycode=countrycode
|
getCountryStations.countrycode=_countrycode
|
||||||
getCountryStations.order=searchby
|
getCountryStations.order=searchby
|
||||||
getCountryStations.getStations()
|
getCountryStations.getStations()
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user