Re: [MSEide-MSEgui-talk] tlayouter on Linux Mint (was: Some question about MSE thread...)

2017-08-02 Thread Martin Schreiber


On 08/01/2017 03:36 PM, Fred van Stappen wrote:
> 
> So, to resume, on my Linux 64 Mint system there is problem with:
> 
Works for me on Mint 18.2 and Cinnamon desktop.

Martin

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] tlayouter on Linux Mint (was: Some question about MSE thread...)

2017-08-02 Thread Fred van Stappen
Re-hello Martin.


I do not know if it could help but the symptom of tlayouter problems on my 
machine are +- similar with the problem I have when enable Z order handling.


Also, at the beginning when I was working on ideU, I had, at run time with the 
designer, problems with msesettings and layout.


Suddenly the settingsfo become crazy (moving all the way) + crash.


At that moment (and till now), the solution was to re-design settingsfo, 
without using any TLayouter.


Fre;D
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] tlayouter on Linux Mint (was: Some question about MSE thread...)

2017-08-02 Thread Fred van Stappen
> https://www.linuxmint.com/download.php
> Cinnamon, MATE, Xfce, KDE or something other?

Hello Martin.

I use (like many others, see http://distrowatch.com stat on the right) Linux 
Mint MATE.

My version is Mint Mate 17.

Fre;D

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] tlayouter on Linux Mint

2017-08-02 Thread Fred van Stappen
test
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] tlayouter on Linux Mint

2017-08-02 Thread Fred van Stappen
Hello Martin.

I have the bandit.

He was hidden in msegui.pas, inside function twidget.aligny().

At line 8275 --->

   wam_center: begin
 result:= frootpos.y + framepos.y + framesize.cy div 2;
end;

I change it with this:

   wam_center: begin
 if awidget.framesize.cy >= awidget.height then
 result:= frootpos.y + framepos.y + framesize.cy div 2 else
 result:= frootpos.y + framepos.y + awidget.height div 2;
end;

Now, after recompiling mseide and loading last noisegen + show main.pas as form 
--> perfect, no crash.
And compile+run works like charm. ;-)

PS: Maybe you have a better correction for te bandit, but for my system, all is 
ok now.

Fre;D
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] tlayouter on Linux Mint

2017-08-02 Thread Fred van Stappen
Hello Martin.

I have the bandit.

He was hidden in msegui.pas, inside function twidget.aligny().

At line 8275 --->

   wam_center: begin
 result:= frootpos.y + framepos.y + framesize.cy div 2;
end;

I change it with this:

   wam_center: begin
 if awidget.framesize.cy >= awidget.height then
 result:= frootpos.y + framepos.y + framesize.cy div 2 else
 result:= frootpos.y + framepos.y + awidget.height div 2;
end;

Now, after recompiling mseide and loading last noisegen + show main.pas as form 
--> perfect, no crash.
And compile+run works like charm. ;-)

PS: Maybe you have a better correction for te bandit, but for my system, all is 
ok now.

Fre;D

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] Test

2017-08-02 Thread Martin Schreiber
Test

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] tlayouter on Linux Mint

2017-08-02 Thread Martin Schreiber
On Thursday 03 August 2017 00:19:05 Fred van Stappen wrote:
> Hello Martin.
>
> I have the bandit.
>
> He was hidden in msegui.pas, inside function twidget.aligny().
>
> At line 8275 --->
>
>wam_center: begin
>  result:= frootpos.y + framepos.y + framesize.cy div 2;
> end;
>
> I change it with this:
>
>wam_center: begin
>  if awidget.framesize.cy >= awidget.height then
>  result:= frootpos.y + framepos.y + framesize.cy div 2 else
>  result:= frootpos.y + framepos.y + awidget.height div 2;
> end;
>
You never give up! ;-)

I must be able to reproduce the problem before I can make changes. How looks 
the stack trace at the crash?

Martin

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] tlayouter on Linux Mint (was: Some question about MSE thread...)

2017-08-02 Thread Fred van Stappen
>> So, to resume, on my Linux 64 Mint system there is problem with:

> Works for me on Mint 18.2 and Cinnamon desktop.

Ha, ok, I am happy for you.

Fre;D
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] tlayouter on Linux Mint

2017-08-02 Thread Martin Schreiber


On 08/02/2017 02:07 PM, Fred van Stappen wrote:
>>> So, to resume, on my Linux 64 Mint system there is problem with:
> 
>> Works for me on Mint 18.2 and Cinnamon desktop.
> 
> Ha, ok, I am happy for you.
> 
It also works on Mint 18.2-MATE.

Again the the question: can anybody reproduce the problem?

Martin

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] docking bug

2017-08-02 Thread code dz
the problem is gone ;)

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] tlayouter on Linux Mint

2017-08-02 Thread Patrick Goupell



It also works on Mint 18.2-MATE.

Again the the question: can anybody reproduce the problem?

Martin



What video chip / card / driver is being used?  I hve had problems with 
nvidea chips in  the past and it was always the driver.


--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] tlayouter on Linux Mint

2017-08-02 Thread Fred van Stappen

> Again the the question: can anybody reproduce the problem?

Tonight I will come back to combat.

I have more indice now of the bandit: he is somewhere in a process used by 
TLayouter.

The crash comes from libXFt.so.

I suspect some pointer not assigned / not set-to nil to make trouble with my 
graphic-card:

lspci | grep VGA
00:02.0 VGA compatible controller: Intel Corporation Atom Processor 
Z36xxx/Z37xxx Series Graphics & Display (rev 0e).

Write you later.

Fre;D

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk