Quote:
Originally Posted by kovidgoyal
1. That is the zooming feature provided by webengine, I'm not sufficiently motivated to write my own.
2. How would one apply a color scheme to arbitrary websites in a way that didn't break them
3. No clue about that, though why do you want to log into you google account to lookup words?
|
Hi
1. I didn't suggest to rewrite zooming feature, only to change ZoomFactor in calibre/src/calibre/gui2/viewer/lookup.py
Code:
def zoom_in(self):
self.setZoomFactor(min(self.zoomFactor() + 0.2, 5))
def zoom_out(self):
self.setZoomFactor(max(0.25, self.zoomFactor() - 0.2))
Or it'll be even better,to add additional context menu's item to specify this factor by the user.
2. the same way as it did in "Dark Reader"
https://github.com/darkreader/darkreader
3. Due to this fact:
Upcoming changes to history
Translation history will soon only be available when you are signed in and will be centrally managed within My Activity. Past history will be cleared during this upgrade, so make sure to save translations you want to remember for ease of access later.
Quote:
Originally Posted by DNSB
The funny thing is that for me, I can sign into my Google account though I can't see any improvement in the results from Google Search by doing so.
|
Wow! How did you manage to do this?