Skip to content
This repository has been archived by the owner on Sep 6, 2023. It is now read-only.

Half Zoom #67

Closed
agence104 opened this issue Sep 23, 2016 · 6 comments
Closed

Half Zoom #67

agence104 opened this issue Sep 23, 2016 · 6 comments

Comments

@agence104
Copy link

Hi,

Could we reduce the zoom size to half size. I feel as if the zooms are too big in differences.

Thank

@agence104
Copy link
Author

agence104 commented Sep 23, 2016

From :

app.zoomIn = function () {
  var newZoom = Math.min(maxZoom, config.get('zoom') + 1);
  updateZoom(newZoom);
};
app.zoomOut = function () {
  var newZoom = Math.max(minZoom, config.get('zoom') - 1);
  updateZoom(newZoom);
};

To:

app.zoomIn = function () {
  var newZoom = Math.min(maxZoom, config.get('zoom') + 0.5);
  updateZoom(newZoom);
};
app.zoomOut = function () {
  var newZoom = Math.max(minZoom, config.get('zoom') - 0.5);
  updateZoom(newZoom);
};

@agence104
Copy link
Author

Any update on this issue?

@jwheare
Copy link
Member

jwheare commented Feb 1, 2017

We've not been able to prioritise work on the desktop app recently, but I'm taking a look at it again this week. Will try to get a release out soon with a fix for this.

Note to self: look into electron/electron#8041 as well.

@agence104
Copy link
Author

Great News. Thanks. Ill keep an eye out :)

@jwheare
Copy link
Member

jwheare commented Feb 2, 2017

Fixed in c4b3014, will be in the next release.

@jwheare
Copy link
Member

jwheare commented Oct 2, 2017

Fixed in the latest release: https://github.com/irccloud/irccloud-desktop/releases/tag/v0.4.0

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant