View Single Post
Old 01-04-2012, 05:08 PM   #9
meme
Sigil developer
meme ought to be getting tired of karma fortunes by now.meme ought to be getting tired of karma fortunes by now.meme ought to be getting tired of karma fortunes by now.meme ought to be getting tired of karma fortunes by now.meme ought to be getting tired of karma fortunes by now.meme ought to be getting tired of karma fortunes by now.meme ought to be getting tired of karma fortunes by now.meme ought to be getting tired of karma fortunes by now.meme ought to be getting tired of karma fortunes by now.meme ought to be getting tired of karma fortunes by now.meme ought to be getting tired of karma fortunes by now.
 
Posts: 1,274
Karma: 1101600
Join Date: Jan 2011
Location: UK
Device: Kindle PW, K4 NT, K3, Kobo Touch
Quote:
Originally Posted by user_none View Post
  • F&R Results message not plural response. May not be fixed because it doesn't hurt anything...

No changes that require changes to public strings will be make. Strings are now frozen to allow translators to make any necessary changes.

The Linux builds will be up tomorrowish. I've run into some issues with packaging them because Ubuntu is now putting the Qt files in a different place so they're not being found by build system.
I think the plural response can be ignored - especially if you've frozen Strings.

Linux seems to build and run fine, at least on my system (4.7.4 SDK installed to /opt/QtSDK).


I've looked into the issue I had when building the code and highlighting text in codeview and may have found the issue. I'll retest with your linux build when available in case its my build environment.

If I select some text in Codeview it highlighted fine on my Ubuntu 11.04 system. But on my 11.10 system it basically became white on white, making it a pain (same if I do a Find of the text - it became white on white). As no one else reported this I figured it might be my system, so I wiped and re-installed 11.10 (needed to anyway to clear out an old upgrade and get rid of an old partition). But the issue was still there after building the latest source.

I noticed that if I highlighted some characters in the same line it was white/white but if I drag to the next line or so that the text would highlight ok. At first I though after some googling that it was using palette instead of setStyleSheet, but it looks like its more to do with CodeViewEditor::HighlightCurrentLine(). It looks like the code to highlight the whole line line is conflicting with the highlighting of the selected text. If I comment out the HighlightCurrentLine code, it highlights ok. And if I put setStyleSheet("QPlainTextEdit { selection-background-color: darkBlue; selection-color: white }"); as the last line of HighlightCurrentLine then that works ok too (forcing the selection highlight after the line highlight). Neither of these seems a perfect fix, but something for you to consider.

I still haven't figured out my duplicate Fonts/Direction entries in the right click menu - which still appear even on a fresh 11.10 build.
meme is offline