diff options
author | 2022-12-10 10:33:06 +0900 | |
---|---|---|
committer | 2023-11-26 20:11:47 +0900 | |
commit | 35c1c5fe90629bfca76b82fc5b6180fa18cf648b (patch) | |
tree | da6dc2e70034c67450eab291c9dcf28122e90eda /GUIModel/main.qml | |
parent | a16c6201be94a57eb8151a91699084d99694877c (diff) |
Remove map movie from cluster-refgui
The cluster-refgui include big map move for GUI demonstration.
But it does not use in cluster-refgui.
This patch remove map movie from repositry.
Bug-AGL: SPEC-4991
Change-Id: Ieebf7a78a281feb0f4075d09374dd3905b6f4eb6
Signed-off-by: Naoto Yamaguchi <naoto.yamaguchi@aisin.co.jp>
Diffstat (limited to 'GUIModel/main.qml')
-rw-r--r-- | GUIModel/main.qml | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/GUIModel/main.qml b/GUIModel/main.qml index 438ec37..5389797 100644 --- a/GUIModel/main.qml +++ b/GUIModel/main.qml @@ -22,7 +22,6 @@ import "./FPSItem" import "./ACC" import "./CruisingRange" import "./Header" -import "./Map" import "./Menu" import "./Meter" import "./ShiftPosition" @@ -50,8 +49,6 @@ Window { property string arrow_state : "arrow_normal_default" property string set_state : "set_default" signal transNormalToAdas() - signal transAdasToMap() - signal transMapToNormal() signal keyPressed_Up() signal keyPressed_Down() @@ -121,10 +118,6 @@ Window { } - Map{ - id: map - } - TurnByTurn{ id:turnByTurn } @@ -153,22 +146,6 @@ Window { Keys.onPressed: { switch(event.key){ - case(Qt.Key_C): - - if(mode === 0){ - transNormalToAdas(); - }else if(mode === 1){ - transAdasToMap(); - }else if(mode === 2){ - transMapToNormal() - } - - mode++; - if(mode > 2) mode = 0; - break - - - case(Qt.Key_1): if(shiftPosition.shiftId < 5) { shiftPosition.shiftId++ |