Am Freitag, den 19.01.2007, 18:07 +0100 schrieb Mattias Gaertner:
> On Fri, 19 Jan 2007 17:45:15 +0100
> Marc Santhoff <[EMAIL PROTECTED]> wrote:
> 
> > Hi,
> > 
> > I updated lazarus to rev 10478 and now I have a funny problem:
> > 
> > After lazarus started with the project I last worked at and in some of
> > the 11 open files the cursor does not reach the end of line. Some
> > lines have one char not reachable, other have two chars of.
> > 
> > It makes no difference if I use the right arrow key, end key or the
> > mouse.
> 
> Can you send an examples and tell what font you are using (editor
> options -> display)

Sure I can, what kind of examples do you want, screenshots or code
snippets?

Screenshots don't really tell much, because the cursor looks as ever, it
ionly doesn't move to the right on command. But a code snippets follows
here:

<first lines of one file having the cursor problem>
unit hdf5obj;
{$mode objfpc}
interface
uses hdf5, ArrayTypes;
type
        { checked valid path }
        {  not necessary
        THdf5Path = class()
                
        end; }
        THdf5Path = AnsiString;
        
        tID = AnsiString; { could be a class including building rules of IDs }
        tIdRefs = tID;
        
{ THdf5Item }

THdf5Item = class
        private
                { standard required object attributes }
                { used for Group, Dataset and Named Dataype }
                fName: THdf5Path;
                fObj_Xid: tID;
                fH5Path: THdf5Path;
                fParents: tIdRefs;
                fH5ParentPaths: THdf5Path;
        public
                property Name: THdf5Path read fName write fName;
                property Obj_Xid: tID read fObj_Xid write fObj_Xid;
                property H5Path: THdf5Path read fH5Path write fH5Path;
                property Parents: TIdRefs read fParents write fParents;
                property H5ParentPaths: THdf5Path read fH5ParentPaths write 
fH5ParentPaths;
        end;
        
        { forward declarations }
        THdf5Dataset = class;
        THdf5Attribute = class;

</first lines of one file having the cursor problem>

In the example the first line exposing the error is line 6: "{ checked
valid path }". Other files are working without problem.

The font I'm using is

-bitstream-courier 10 pitch-medium-r-normal-*-*-*-*-*-*-*-iso10646-1

I've tried some other fixed fonts and the problem remains, e.g.

-bitstream-charter-medium-r-normal-*-*-140-*-*-*-*-iso8859-1
-bitstream-terminal-medium-r-normal-*-*-140-*-*-c-*-iso8859-1

do show it, too.

>  
> > The GUI is compiled for GTK1.
> > 
> > Bug or feature?
> > 
> > Another issue is lazarus is minimized anytime I switch virtual screen
> > (wmaker) ...
> 
> This is a known bug. When switching to another desktop, the windows get
> the same state as minimized. When switching back something is not
> restored. I didn't had the time to investigate further yet.

Okay, good to know.

Marc


_________________________________________________________________
     To unsubscribe: mail [EMAIL PROTECTED] with
                "unsubscribe" as the Subject
   archives at http://www.lazarus.freepascal.org/mailarchives

Reply via email to