mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-12-19 14:50:53 +01:00
hot fix zoom and scrolling
bug: was only zoom In
(int QPoint::manhattanLength() const
Returns the sum of the absolute values)
This commit is contained in:
@@ -511,7 +511,7 @@ qreal TitleBlockTemplateView::templateHeight() const {
|
|||||||
void TitleBlockTemplateView::wheelEvent(QWheelEvent *e) {
|
void TitleBlockTemplateView::wheelEvent(QWheelEvent *e) {
|
||||||
// si la touche Ctrl est enfoncee, on zoome / dezoome
|
// si la touche Ctrl est enfoncee, on zoome / dezoome
|
||||||
if (e -> modifiers() & Qt::ControlModifier) {
|
if (e -> modifiers() & Qt::ControlModifier) {
|
||||||
if (e -> angleDelta().manhattanLength() > 0) {
|
if (e -> delta() > 0) {
|
||||||
zoomIn();
|
zoomIn();
|
||||||
} else {
|
} else {
|
||||||
zoomOut();
|
zoomOut();
|
||||||
|
|||||||
Reference in New Issue
Block a user