Page 1 of 1

PB 5.30b1 - Issue Browser Coloring and Redundant Text

Posted: Fri Jun 06, 2014 3:01 pm
by c4s
I didn't install beta 2 yet, so sorry if this has already been fixed/changed.

The white area besides those three buttons should have the background color too (in this case black). Here is a screenshot to show what I mean:
Image


Another small suggestion: I think the issue keywords should be removed from the "Text" column, otherwise it's redundant. What I mean:

Code: Select all

Issue  Text
-----------
Fixme  FIXME Fix this!
Todo   TODO Do something

Should be like:

Issue  Text
-----------
Fixme  Fix this!
Todo   Do something

Re: PB 5.30b1 - Issue Browser Coloring and Redundant Text

Posted: Fri Jun 06, 2014 4:58 pm
by c4s
Wait, why was this moved to the feature requests? At least my first finding is a (very small) bug isn't it?

Re: PB 5.30b1 - Issue Browser Coloring and Redundant Text

Posted: Fri Jun 06, 2014 5:52 pm
by Demivec
c4s wrote:Another small suggestion: I think the issue keywords should be removed from the "Text" column, otherwise it's redundant. What I mean:
You can use this to match TODO in a case insensitive way at the start or middle of a line but not at the end and not followed by anything. If case insensitivity is not desired, remove the '(?i)'.

Code: Select all

(?<=(?i)\bTODO\b).+
Here's a thread in the Tips n' Tricks forum that may also be helpful.

Re: PB 5.30b1 - Issue Browser Coloring and Redundant Text

Posted: Sat Jun 07, 2014 11:54 am
by c4s
Demivec, thanks for the suggestion. To me those advanced patterns aren't very intuitive but they seem to work just fine.


Though I still think this is a bug:
c4s wrote:The white area besides those three buttons should have the background color too (in this case black)
And this should be another small one:
If you click on the New button under Preferences > Issues an empty issue will be created which has the priority set to "##### String not found! #####".

Re: PB 5.30b1 - Issue Browser Coloring and Redundant Text

Posted: Sat Jun 07, 2014 2:46 pm
by freak
c4s wrote:Though I still think this is a bug:
c4s wrote:The white area besides those three buttons should have the background color too (in this case black)
No, this is not a bug. What you see is the window background. Only the background color of the gadgets is changed by the setting. Its the same in the Explorer tool.
c4s wrote:And this should be another small one:
If you click on the New button under Preferences > Issues an empty issue will be created which has the priority set to "##### String not found! #####".
I fixed that.

Re: PB 5.30b1 - Issue Browser Coloring and Redundant Text

Posted: Sat Jun 07, 2014 4:31 pm
by c4s
freak wrote:No, this is not a bug. What you see is the window background. Only the background color of the gadgets is changed by the setting. Its the same in the Explorer tool.
Thanks for the clarification. Then I request that the window background of the tools panel will be colored too.


By the way: The value of "ProjectPanelLong" (line 141 of Editor.catalog) has one unnecessary space character at the beginning.