diff --git a/CHANGELOG.md b/CHANGELOG.md index dc1a1ba0..9b714e8e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [0.3.1](https://github.com/Fabio286/antares/compare/v0.3.0...v0.3.1) (2021-07-27) + + +### Bug Fixes + +* **UI:** tabs or explorebar elements selected with mouse wheel or right button ([a8a47ed](https://github.com/Fabio286/antares/commit/a8a47ed5f7d5d8cbbdd6c33ef8307d9dce5b193b)) + ## [0.3.0](https://github.com/Fabio286/antares/compare/v0.2.1...v0.3.0) (2021-07-23) diff --git a/package.json b/package.json index d5669f7c..fac39233 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "antares", "productName": "Antares", - "version": "0.3.0", + "version": "0.3.1", "description": "A cross-platform easy to use SQL client.", "license": "MIT", "repository": "https://github.com/Fabio286/antares.git", diff --git a/src/renderer/components/Workspace.vue b/src/renderer/components/Workspace.vue index c1250d06..31fd114b 100644 --- a/src/renderer/components/Workspace.vue +++ b/src/renderer/components/Workspace.vue @@ -21,7 +21,7 @@ class="tab-item tab-draggable" draggable="true" :class="{'active': selectedTab === tab.uid}" - @mousedown="selectTab({uid: workspace.uid, tab: tab.uid})" + @mousedown.left="selectTab({uid: workspace.uid, tab: tab.uid})" @mouseup.middle="closeTab(tab)" > diff --git a/src/renderer/components/WorkspaceExploreBarSchema.vue b/src/renderer/components/WorkspaceExploreBarSchema.vue index 3b8b787a..506cf902 100644 --- a/src/renderer/components/WorkspaceExploreBarSchema.vue +++ b/src/renderer/components/WorkspaceExploreBarSchema.vue @@ -19,7 +19,7 @@ :key="table.name" class="menu-item" :class="{'text-bold': breadcrumbs.schema === database.name && [breadcrumbs.table, breadcrumbs.view].includes(table.name)}" - @mousedown="selectTable({schema: database.name, table})" + @mousedown.left="selectTable({schema: database.name, table})" @dblclick="openDataTab({schema: database.name, table})" @contextmenu.prevent="showTableContext($event, table)" >