User forums > Nightly builds

The 15 August 2011 build (7385) is out.

<< < (12/13) > >>

ham:
hi, i updated the list, yeah i got some wrong, the tabs seems to work now like Notepad++ (my favourite text editor) and thats fantastic

To the BUG with Desktops, i thought wx lets you set a min size, but the zero size if very f**cked up, sorry if i was blaming you for that xD

Is it right then, that BUG 8 has todo with this monitorproblem?

To BUG 13: the tiny searchfields really dont find anything for me. The normal search in files does work so i use that, so dont bother that much.

pls keep the good work going, i like CB much more than eclipse/codelite/visualstudio (i hate ms)

and therefore i like you guys.

h.a.n.d.

Alpha:

--- Quote from: jens on September 02, 2011, 08:52:09 am ---
--- Quote from: ham on September 02, 2011, 04:29:59 am ---15. hovering over a symbol, CC show its origin or params after a toooooooo long waittime (2-3 sek)
     15.1 but leaving the hovered element, this exact info stays on top of window until 3-5sek passed, or i hover over the next element(word) for (2-3 sec),
     -> the help text should be removed immedietly, when leaving the element. (thats called interactive^^)

--- End quote ---
The tooltip should be shown after 1s, but it's not configurable (at the moment).
Dwelltime is hardcoded to 1000 ms at the moment, it can be changed easily, but would lead to more config options and therefore to a more confusing settings dialog.

--- End quote ---
As a suggestion, dwelltime could be made to feel more "interactive" by having it dynamically change based on the speed/distance the mouse leaves the element - moving the mouse away faster/further would decrease the time the help text is shown.


--- Quote from: ham on September 02, 2011, 04:29:59 am ---8. BUG: CC helptext is overlapping the actual CB windowsize (tooooooooo long, no linebreak)

--- End quote ---
I have the same problem; code-completion always starts where the cursor is, so when I get to the right side of the screen, half the box ends up off the monitor; hints always begin the box where the mouse is, and as many times these are very long, parts of them also end up off the edge of the screen.  It would be useful for hints to contain a line-break function, as well as both hints and code-completion to detect viable display area, and shift left when necessary.
The other problem I have is that hints and code-completion sometimes conflict.  When I type to the end of a page and Code::Blocks scrolls down, my mouse sometimes ends up over some code.  Now the code-completion list will appear normally, but almost immediately disappear, being overridden by the hint box.  I am not sure how balance of priorities could be achieved between the two.

ollydbg:

--- Quote from: jens on September 02, 2011, 08:52:09 am ---

--- Quote from: ham on September 02, 2011, 04:29:59 am ---15. hovering over a symbol, CC show its origin or params after a toooooooo long waittime (2-3 sek)
     15.1 but leaving the hovered element, this exact info stays on top of window until 3-5sek passed, or i hover over the next element(word) for (2-3 sec),
     -> the help text should be removed immedietly, when leaving the element. (thats called interactive^^)

--- End quote ---
The tooltip should be shown after 1s, but it's not configurable (at the moment).
Dwelltime is hardcoded to 1000 ms at the moment, it can be changed easily, but would lead to more config options and therefore to a more confusing settings dialog.

--- End quote ---
It is here:

--- Code: ---// static
void cbEditor::InternalSetEditorStyleBeforeFileOpen(cbStyledTextCtrl* control)
{
    if (!control)
        return;

    ConfigManager* mgr = Manager::Get()->GetConfigManager(_T("editor"));

    // setting the default editor font size to 10 point
    wxFont font(10, wxMODERN, wxNORMAL, wxNORMAL);

    wxString fontstring = mgr->Read(_T("/font"), wxEmptyString);

    if (!fontstring.IsEmpty())
    {
        wxNativeFontInfo nfi;
        nfi.FromString(fontstring);
        font.SetNativeFontInfo(nfi);
    }

    control->SetMouseDwellTime(1000);
--- End code ---
The value will effect all the tooltip event delay time, including the debugger's value tip and the cc's value tip.


stefanos_:

--- Quote from: damianpaz on September 05, 2011, 09:05:44 pm ---I'm experiencing a very strange bug that happens every 15-30 minutes. I'm not quite sure what's causing it but it seems to be related to copying stuff into the clipboard or while saving documents. CodeBlocks will just hang and WindowsXP will say it's not responding. And he won't. Anymore.

--- End quote ---

Unfortunately this is not enough info. Guys here will need compiler version, bits of your OS, and wxWidgets version, plus the last steps you were doing to reproduce this behavior.

bvisser:

--- Quote from: jens on September 02, 2011, 08:52:09 am ---
--- Quote from: ham on September 02, 2011, 04:29:59 am ---2. FATAL BUG: if i switch from 1 monitor to 2 (or from 2 to 1) all wxWidgets dialogs are set to size 0!!!, so i have to close CB (and hope it wont crash while closing) and reopen

--- End quote ---

--- End quote ---

Any update or solution to this problem as this is very annoying.

Regards

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version