Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Software > Calibre

Notices

Reply
 
Thread Tools Search this Thread
Old 02-24-2019, 09:08 PM   #16
MarjaE
Guru
MarjaE ought to be getting tired of karma fortunes by now.MarjaE ought to be getting tired of karma fortunes by now.MarjaE ought to be getting tired of karma fortunes by now.MarjaE ought to be getting tired of karma fortunes by now.MarjaE ought to be getting tired of karma fortunes by now.MarjaE ought to be getting tired of karma fortunes by now.MarjaE ought to be getting tired of karma fortunes by now.MarjaE ought to be getting tired of karma fortunes by now.MarjaE ought to be getting tired of karma fortunes by now.MarjaE ought to be getting tired of karma fortunes by now.MarjaE ought to be getting tired of karma fortunes by now.
 
Posts: 924
Karma: 53902736
Join Date: Jun 2015
Device: multiple
Sigil for Mac has the same issues. Sigil for Windows won't install in Wineskin.
MarjaE is offline   Reply With Quote
Old 02-24-2019, 09:41 PM   #17
BetterRed
null operator (he/him)
BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.
 
Posts: 20,567
Karma: 26954694
Join Date: Mar 2012
Location: Sydney Australia
Device: none
Quote:
Originally Posted by MarjaE View Post
Sigil for Mac has the same issues. Sigil for Windows won't install in Wineskin.
Then it's quite likely that Calibre won't either. Although it might be worth trying the portable version of calibre - it's completely self contained.

Have a read of that CW article to see if you want to try one of the virtual Windows under MacOS solutions.

I wonder why Qt can inherit cursor behaviour from Windows and not from Mac, be interesting to know what happens with Calibre and Sigil on Linux, different Linux interfaces may behave differently.

BR
BetterRed is offline   Reply With Quote
Advert
Old 02-24-2019, 10:46 PM   #18
kovidgoyal
creator of calibre
kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.
 
kovidgoyal's Avatar
 
Posts: 43,856
Karma: 22666666
Join Date: Oct 2006
Location: Mumbai, India
Device: Various
https://github.com/kovidgoyal/calibr...3669081f605616
kovidgoyal is offline   Reply With Quote
Old 02-24-2019, 11:36 PM   #19
MarjaE
Guru
MarjaE ought to be getting tired of karma fortunes by now.MarjaE ought to be getting tired of karma fortunes by now.MarjaE ought to be getting tired of karma fortunes by now.MarjaE ought to be getting tired of karma fortunes by now.MarjaE ought to be getting tired of karma fortunes by now.MarjaE ought to be getting tired of karma fortunes by now.MarjaE ought to be getting tired of karma fortunes by now.MarjaE ought to be getting tired of karma fortunes by now.MarjaE ought to be getting tired of karma fortunes by now.MarjaE ought to be getting tired of karma fortunes by now.MarjaE ought to be getting tired of karma fortunes by now.
 
Posts: 924
Karma: 53902736
Join Date: Jun 2015
Device: multiple
Wonderful! Thank you! I hope this helps other users too!

I think the issue is that the MacOS setting is (a) well-hidden and (b) only for one type of text.

Last edited by MarjaE; 02-24-2019 at 11:43 PM.
MarjaE is offline   Reply With Quote
Old 02-28-2019, 06:21 PM   #20
KevinH
Sigil Developer
KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.
 
Posts: 7,644
Karma: 5433388
Join Date: Nov 2009
Device: many
Sigil for Mac uses an environment variable to completly disable blinking in Qt and has for about the last 3 or 4 releases.

See https://github.com/Sigil-Ebook/Sigil...r/src/main.cpp

Code:
        // Qt's setCursorFlashTime(msecs) (or the docs) are broken
        // According to the docs, setting a negative value should disable cursor blinking 
        // but instead just forces it to look for PlatformSpecific Themeable Hints to get 
        // a value which for Mac OS X is hardcoded to 1000 ms
        // This was the only way I could get Qt to disable cursor blinking on a Mac if desired
        if (qEnvironmentVariableIsSet("SIGIL_DISABLE_CURSOR_BLINK")) {
            // qDebug() << "trying to disable text cursor blinking";
            app.setCursorFlashTime(0);
            // qDebug() << "cursorFlashTime: " << app.cursorFlashTime();
        }
So export SIGIL_DISABLE_CURSOR_BLINK =1 before launching Sigil should do the trick.

This was added because other users had the same issues with trying to get Qt to respect the system blink controls.
KevinH is offline   Reply With Quote
Advert
Old 03-11-2019, 04:07 PM   #21
MarjaE
Guru
MarjaE ought to be getting tired of karma fortunes by now.MarjaE ought to be getting tired of karma fortunes by now.MarjaE ought to be getting tired of karma fortunes by now.MarjaE ought to be getting tired of karma fortunes by now.MarjaE ought to be getting tired of karma fortunes by now.MarjaE ought to be getting tired of karma fortunes by now.MarjaE ought to be getting tired of karma fortunes by now.MarjaE ought to be getting tired of karma fortunes by now.MarjaE ought to be getting tired of karma fortunes by now.MarjaE ought to be getting tired of karma fortunes by now.MarjaE ought to be getting tired of karma fortunes by now.
 
Posts: 924
Karma: 53902736
Join Date: Jun 2015
Device: multiple
And I can confirm it's working here.
MarjaE is offline   Reply With Quote
Reply

Tags
accessibility, cursors, macos, visual accessibility


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Any Way to Keep the Cursor from Blinking? MarjaE Sigil 13 04-15-2017 04:02 PM
Harper Lee's heirs kill mass market paperback of 'To Kill a Mockingbird' bgalbrecht News 65 03-25-2016 11:21 AM
kindle 3 blinking orange scorpion2782 Amazon Kindle 8 11-19-2015 02:19 PM
kobo aura hd - screen blinking and 5 square blinking all time oda Kobo Reader 6 12-26-2014 10:20 AM
'VOWS TO KILL' - Detective receives an email: 'I will kill you on your wedding day'. tothepoint Self-Promotions by Authors and Publishers 2 02-21-2013 06:27 AM


All times are GMT -4. The time now is 11:33 AM.


MobileRead.com is a privately owned, operated and funded community.