Re: [Lazarus] ComponentPalette images size on HighDPI devices

2015-12-28 Thread Sandro Cumerlato
On 27 December 2015 at 13:56, Ondrej Pokorny  wrote:

> ...
> Btw Sandro it doesn't look like you didn't take screenshots from high-DPI
> device, am I wrong?
>
> Ondrej
>

My device is  2160x1440 (12 inches), quite dense, with a 150% scale factor
set for texts, apps and other elements.

Sandro
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Lazarus 1.6RC1 on various platforms

2015-12-28 Thread Salvatore Coppola
Create the
procedure TForm1.Button1Click(Sender: TObject);
begin

end;
Instead of the error message

2015-12-28 9:16 GMT+01:00 Ondrej Pokorny :

> On 28.12.2015 09:11, Salvatore Coppola wrote:
>
> What do you want to change?
>> - do you want to remove the "Button1Click" reference in OI on undo?
>> or
>> - do you want to create Button1Click even if there is reference in OI but
>> the method cannot be found?
>>
>
> Yes, this can be a good option
>
>
> Which one?
>
> Ondrej
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>
>
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Lazarus 1.6RC1 on various platforms

2015-12-28 Thread Salvatore Coppola
Done

2015-12-28 9:50 GMT+01:00 Ondrej Pokorny :

> On 28.12.2015 09:35, Salvatore Coppola wrote:
>
> Create the
> procedure TForm1.Button1Click(Sender: TObject);
> begin
>
> end;
> Instead of the error message
>
> Please fill an issue report in the BT.
>
> Ondrej
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>
>
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Lazarus 1.6RC1 on various platforms

2015-12-28 Thread Ondrej Pokorny

On 28.12.2015 09:35, Salvatore Coppola wrote:

Create the
procedure TForm1.Button1Click(Sender: TObject);
begin

end;
Instead of the error message


Please fill an issue report in the BT.

Ondrej
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


[Lazarus] Fwd: Lazarus 1.6 RC1: IDE, watch list, DEL key does nothing if language=german

2015-12-28 Thread Jürgen Hestermann


> Within Lazarus 1.6 RC1 I can not delete an entry from the watch list with the 
DEL key when I use german language settings. When I switch to english it works 
okay.

The same applies to the INS key.

Why does changing the language change the keys used?


--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Lazarus 1.6RC1 on various platforms

2015-12-28 Thread Salvatore Coppola
2015-12-27 22:29 GMT+01:00 Ondrej Pokorny :

> On 26.12.2015 10:00, Salvatore Coppola wrote:
>
> the IDE is give a error msg that didnt help to find the problem (unit
> section enlighted)
>
>
> I find the error message clear enough:
>
>
>
> and in the messages window you find
>
> unit1.pas(1,11) Error: identifier not found: Button1Click
>
> So there is no bug at all.
>
> What do you want to change?
> - do you want to remove the "Button1Click" reference in OI on undo?
> or
> - do you want to create Button1Click even if there is reference in OI but
> the method cannot be found?
>

Yes, this can be a good option because  in the other case (compiling) the
IDE suggest to self remove "Button1Click" in the OI.
Salvatore

Ondrej
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>
>
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Lazarus 1.6RC1 on various platforms

2015-12-28 Thread Ondrej Pokorny

On 28.12.2015 09:11, Salvatore Coppola wrote:


What do you want to change?
- do you want to remove the "Button1Click" reference in OI on undo?
or
- do you want to create Button1Click even if there is reference in
OI but the method cannot be found?


Yes, this can be a good option


Which one?

Ondrej
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


[Lazarus] revision 51059 - lazbuild

2015-12-28 Thread Sandro Cumerlato
Hello,
lazbuild compilation has been compromised in revision 51059, line 887.

http://svn.freepascal.org/cgi-bin/viewvc.cgi/trunk/ide/project.pp?root=lazarus=50436=51059=51059

please review your code (= False) or consider attached patch.

Sandro
Index: ide/lazbuild.lpr
===
--- ide/lazbuild.lpr(revision 51070)
+++ ide/lazbuild.lpr(working copy)
@@ -1005,7 +1005,7 @@
   Result.BeginUpdate(true);
   try
 // read project info file
-if 
Result.ReadProject(AFilename,EnvironmentOptions.BuildMatrixOptions)<>mrOk then
+if 
Result.ReadProject(AFilename,EnvironmentOptions.BuildMatrixOptions,False)<>mrOk 
then
   Error(ErrorLoadProjectFailed,'Project '+AFilename);
 //BuildBoss.RescanCompilerDefines(true);
 
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus