aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/lte_rlc_graph_dialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ui/qt/lte_rlc_graph_dialog.cpp')
-rw-r--r--ui/qt/lte_rlc_graph_dialog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/qt/lte_rlc_graph_dialog.cpp b/ui/qt/lte_rlc_graph_dialog.cpp
index 5ae97fd631..a54483fd12 100644
--- a/ui/qt/lte_rlc_graph_dialog.cpp
+++ b/ui/qt/lte_rlc_graph_dialog.cpp
@@ -336,14 +336,14 @@ void LteRlcGraphDialog::keyPressEvent(QKeyEvent *event)
break;
case Qt::Key_X: // Zoom X axis only
- if(event->modifiers() & Qt::ShiftModifier){
+ if (event->modifiers() & Qt::ShiftModifier) {
zoomXAxis(false); // upper case X -> Zoom out
} else {
zoomXAxis(true); // lower case x -> Zoom in
}
break;
case Qt::Key_Y: // Zoom Y axis only
- if(event->modifiers() & Qt::ShiftModifier){
+ if (event->modifiers() & Qt::ShiftModifier) {
zoomYAxis(false); // upper case Y -> Zoom out
} else {
zoomYAxis(true); // lower case y -> Zoom in