summaryrefslogtreecommitdiff
path: root/src/hmi/qml/NavigationRoute.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/hmi/qml/NavigationRoute.qml')
-rw-r--r--src/hmi/qml/NavigationRoute.qml10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/hmi/qml/NavigationRoute.qml b/src/hmi/qml/NavigationRoute.qml
index aeb36f4..e43b809 100644
--- a/src/hmi/qml/NavigationRoute.qml
+++ b/src/hmi/qml/NavigationRoute.qml
@@ -134,7 +134,7 @@ HMIMenu {
StdButton {
source:StyleSheet.show_location_on_map[Constants.SOURCE]; x:StyleSheet.show_location_on_map[Constants.X]; y:StyleSheet.show_location_on_map[Constants.Y]; width:StyleSheet.show_location_on_map[Constants.WIDTH]; height:StyleSheet.show_location_on_map[Constants.HEIGHT];
- id:show; disabled:false; next:destination; prev:back; explode:false;
+ id:show; disabled:false; next:destination; prev:back;
onClicked: {
Genivi.data['show_position']=new Array;
Genivi.data['show_position']['lat']=Genivi.data['lat'];
@@ -147,7 +147,7 @@ HMIMenu {
StdButton {
source:StyleSheet.set_as_position[Constants.SOURCE]; x:StyleSheet.set_as_position[Constants.X]; y:StyleSheet.set_as_position[Constants.Y]; width:StyleSheet.set_as_position[Constants.WIDTH]; height:StyleSheet.set_as_position[Constants.HEIGHT];
- id:position; disabled:false; next:calculate; prev:destination; explode:false;
+ id:position; disabled:false; next:calculate; prev:destination;
onClicked: {
Genivi.data['position']=new Array;
Genivi.data['position']['lat']=Genivi.data['lat'];
@@ -161,7 +161,7 @@ HMIMenu {
StdButton {
source:StyleSheet.set_as_destination[Constants.SOURCE]; x:StyleSheet.set_as_destination[Constants.X]; y:StyleSheet.set_as_destination[Constants.Y]; width:StyleSheet.set_as_destination[Constants.WIDTH]; height:StyleSheet.set_as_destination[Constants.HEIGHT];
- id:destination; disabled:false; next:position; prev:show; explode:false;
+ id:destination; disabled:false; next:position; prev:show;
onClicked: {
Genivi.data['destination']=new Array;
Genivi.data['destination']['lat']=Genivi.data['lat'];
@@ -176,7 +176,7 @@ HMIMenu {
StdButton {
source:StyleSheet.route[Constants.SOURCE]; x:StyleSheet.route[Constants.X]; y:StyleSheet.route[Constants.Y]; width:StyleSheet.route[Constants.WIDTH]; height:StyleSheet.route[Constants.HEIGHT];textColor:StyleSheet.routeText[Constants.TEXTCOLOR]; pixelSize:StyleSheet.routeText[Constants.PIXELSIZE];
- id:calculate; text: Genivi.gettext("Route"); explode:false;
+ id:calculate; text: Genivi.gettext("Route");
onClicked: {
var position,destination;
position=Genivi.latlon_to_map(Genivi.data['position']);
@@ -193,7 +193,7 @@ HMIMenu {
StdButton {
source:StyleSheet.calculate_curr[Constants.SOURCE]; x:StyleSheet.calculate_curr[Constants.X]; y:StyleSheet.calculate_curr[Constants.Y]; width:StyleSheet.calculate_curr[Constants.WIDTH]; height:StyleSheet.calculate_curr[Constants.HEIGHT];textColor:StyleSheet.calculate_currText[Constants.TEXTCOLOR]; pixelSize:StyleSheet.calculate_currText[Constants.PIXELSIZE];
- id:calculate_curr; text: Genivi.gettext("GoTo"); explode:false;
+ id:calculate_curr; text: Genivi.gettext("GoTo");
onClicked: {
var position,destination;
destination=Genivi.latlon_to_map(Genivi.data['destination']);