Author Topic: Watches  (Read 5527 times)

Offline Bat

  • Multiple posting newcomer
  • *
  • Posts: 48
Watches
« on: November 02, 2014, 04:13:13 pm »
2 patchs :

https://sourceforge.net/p/codeblocks/tickets/84/
Before :

After :

Problem is on column sizing. Best view with small length variable name, large variable value
As I understand goal is to autosize tooltip to minimal size for no overlap and do autofit of column. I first try to digged into "why it won't always work with actual code". I can explain it, but it solution will be a large code overhead to handle this externally. Calling AutoFit() seem best solution

https://sourceforge.net/p/codeblocks/tickets/85/
-Add possibility to rename variable with double clic
-Set a limit to watch value size. Here if I try to show a string value with 2ko text, it will fail and show an empty tooltip. Full watch value remains available with others tools of Watches
128 char is an arbitrary length ...


Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13406
    • Travis build status
Re: Watches
« Reply #1 on: November 02, 2014, 04:33:18 pm »
-Add possibility to rename variable with double clic
Does double clicking a watch with children result in the expansion of the watch, so the children become visible?
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

Offline Bat

  • Multiple posting newcomer
  • *
  • Posts: 48
Re: Watches
« Reply #2 on: November 02, 2014, 11:18:18 pm »
-Add possibility to rename variable with double clic
Does double clicking a watch with children result in the expansion of the watch, so the children become visible?

It was breaking it. I corrected patch to handle this. Only isolated variable - that can't be exapnded - are editable by double clic now