[LyX/master] Fix cut and paste error

Juergen Spitzmueller spitz at lyx.org
Tue Mar 9 11:58:25 UTC 2021


commit f07a588b25c6b37759e138ebaea1c497a66b8b52
Author: Juergen Spitzmueller <spitz at lyx.org>
Date:   Tue Mar 9 13:03:33 2021 +0100

    Fix cut and paste error
---
 src/frontends/qt/GuiView.cpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/frontends/qt/GuiView.cpp b/src/frontends/qt/GuiView.cpp
index 3fafd20..679d84d 100644
--- a/src/frontends/qt/GuiView.cpp
+++ b/src/frontends/qt/GuiView.cpp
@@ -665,7 +665,7 @@ GuiView::GuiView(int id)
 	zoom_out_->setEnabled(currentBufferView());
 	statusBar()->addPermanentWidget(zoom_slider_);
 	zoom_slider_->setEnabled(currentBufferView());
-	zoom_out_->setEnabled(currentBufferView());
+	zoom_in_->setEnabled(currentBufferView());
 	statusBar()->addPermanentWidget(zoom_in_);
 
 	connect(zoom_slider_, SIGNAL(sliderMoved(int)), this, SLOT(zoomSliderMoved(int)));


More information about the lyx-cvs mailing list