Fixed an issue with geometry window zoom mouse scroll not working. Fixes #7373

pull/86/head
Aditya Toshniwal 2022-05-17 18:58:49 +05:30 committed by Akshay Joshi
parent fbe7b56054
commit 2d8aff6ca0
2 changed files with 1 additions and 2 deletions

View File

@ -19,6 +19,7 @@ Bug fixes
********* *********
| `Issue #7372 <https://redmine.postgresql.org/issues/7372>`_ - Tell Docker to always pull the latest base images when building containers. | `Issue #7372 <https://redmine.postgresql.org/issues/7372>`_ - Tell Docker to always pull the latest base images when building containers.
| `Issue #7373 <https://redmine.postgresql.org/issues/7373>`_ - Fixed an issue with geometry window zoom mouse scroll not working.
| `Issue #7376 <https://redmine.postgresql.org/issues/7376>`_ - Fixed an issue where a popup for unsaved changes appears when clicking on the open file button for a blank query editor. | `Issue #7376 <https://redmine.postgresql.org/issues/7376>`_ - Fixed an issue where a popup for unsaved changes appears when clicking on the open file button for a blank query editor.
| `Issue #7383 <https://redmine.postgresql.org/issues/7383>`_ - Fixed an issue where Preferences are not saved when the dialog is maximized. | `Issue #7383 <https://redmine.postgresql.org/issues/7383>`_ - Fixed an issue where Preferences are not saved when the dialog is maximized.
| `Issue #7388 <https://redmine.postgresql.org/issues/7388>`_ - Fixed an issue where an error message fills the entire window if the query is long. | `Issue #7388 <https://redmine.postgresql.org/issues/7388>`_ - Fixed an issue where an error message fills the entire window if the query is long.

View File

@ -1,4 +1,3 @@
///////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////
// //
// pgAdmin 4 - PostgreSQL Tools // pgAdmin 4 - PostgreSQL Tools
@ -398,7 +397,6 @@ export function GeometryViewer({rows, columns, column}) {
crs={crs} crs={crs}
zoom={2} center={[20, 100]} zoom={2} center={[20, 100]}
preferCanvas={true} preferCanvas={true}
scrollWheelZoom={false}
className={classes.mapContainer} className={classes.mapContainer}
whenCreated={(map)=>{ whenCreated={(map)=>{
mapRef.current = map; mapRef.current = map;