diff --git a/CMakeLists.txt b/CMakeLists.txt index a2cc08184..d646eab87 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ option(BUILD_DOC "Build developer documentation" OFF) # Project data # -project(enroute VERSION 2.4.5) +project(enroute VERSION 2.4.6) set(APP_ID de.akaflieg_freiburg.enroute) math(EXPR PROJECT_VERSION_CODE 10000*${PROJECT_VERSION_MAJOR}+100*${PROJECT_VERSION_MINOR}+${PROJECT_VERSION_PATCH}) add_compile_definitions(PROJECT_VERSION="${PROJECT_VERSION}") diff --git a/src/qml/items/TrafficLabel.qml b/src/qml/items/TrafficLabel.qml index ebe8a8187..332a615b4 100644 --- a/src/qml/items/TrafficLabel.qml +++ b/src/qml/items/TrafficLabel.qml @@ -47,6 +47,8 @@ MapQuickItem { text: trafficInfo.description + font.pixelSize: 0.8*Qt.application.font.pixelSize + leftInset: -4 rightInset: -4 bottomInset: -1 @@ -56,6 +58,7 @@ MapQuickItem { border.color: "black" border.width: 1 color: Qt.lighter(trafficInfo.color, 1.9) + Behavior on color { ColorAnimation { duration: 400 } enabled: trafficInfo.animate