PB 5.30b1 - Issue Browser Coloring and Redundant Text

Got an idea for enhancing PureBasic? New command(s) you'd like to see?
c4s
Addict
Addict
Posts: 1981
Joined: Thu Nov 01, 2007 5:37 pm
Location: Germany

PB 5.30b1 - Issue Browser Coloring and Redundant Text

Post 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
If any of you native English speakers have any suggestions for the above text, please let me know (via PM). Thanks!
c4s
Addict
Addict
Posts: 1981
Joined: Thu Nov 01, 2007 5:37 pm
Location: Germany

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

Post by c4s »

Wait, why was this moved to the feature requests? At least my first finding is a (very small) bug isn't it?
If any of you native English speakers have any suggestions for the above text, please let me know (via PM). Thanks!
User avatar
Demivec
Addict
Addict
Posts: 4260
Joined: Mon Jul 25, 2005 3:51 pm
Location: Utah, USA

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

Post 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.
c4s
Addict
Addict
Posts: 1981
Joined: Thu Nov 01, 2007 5:37 pm
Location: Germany

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

Post 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! #####".
If any of you native English speakers have any suggestions for the above text, please let me know (via PM). Thanks!
freak
PureBasic Team
PureBasic Team
Posts: 5940
Joined: Fri Apr 25, 2003 5:21 pm
Location: Germany

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

Post 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.
quidquid Latine dictum sit altum videtur
c4s
Addict
Addict
Posts: 1981
Joined: Thu Nov 01, 2007 5:37 pm
Location: Germany

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

Post 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.
If any of you native English speakers have any suggestions for the above text, please let me know (via PM). Thanks!
Post Reply