Disabling Zoom Feature in LabVIEW 2025 Q3 and below

Updated Dec 8, 2025

Environment

Software

  • LabVIEW 2024 Q1
  • LabVIEW 2023 Q3

This article outlines the steps to disable the zooming feature using the keyboard shortcut <Ctrl-Mouse Wheel> for Windows or <Cmd-Mouse Wheel> for both Windows and MacOS in LabVIEW 2025 Q3 and below.

In Windows, the steps to perform are listed as shown:

  1. Navigate to the following folder path:  C:\Program Files (x86)\National Instruments\LabVIEW 2025. For MacOS you may refer to the following link below: Open the LabVIEW configuration file (LabVIEW.ini) 
  2. Open the configuration file as shown in the circled red box as shown below. 
  3. Add the following ini key to the configuration file.
    Editor.Zoom.BlockDiagram.Enabled=False
  4. Save the configuration file and restart LabVIEW. The changes will be applied.

ini.png

 

 

Do take note that by inserting this into the LabVIEW configuration file, not only it will disable the zooming feature via keyboard shortcut, but it will also disable the zoom feature via the View menu bar in LabVIEW. 

 

To maintain the zooming feature:

  1. If you want to maintain the zooming feature via the View menu, View>>Zoom In/Zoom Out, but disable the <Ctrl-Mouse Wheel> keyboard shortcut for zooming block diagram, you can add Editor.Zoom.MouseWheelGestureRequireShift=True to the configuration file as shown below.  
  2. Line of code to add in to the configuration file
    Editor.Zoom.MouseWheelGestureRequireShift=True
  3. Save the configuration file and restart LabVIEW. The changes will be applied.
  4. By adding this, the new keyboard shortcut for zooming will be changed to <Ctrl-Shift-Mouse Wheel>, while the original keyboard shortcut <Ctrl-Mouse Wheel> feature will be changed to changing sub diagrams for case structures, event structures etc.