and almost always find that the elements of the forms overlaps with labels and other text when i run the programs in different linuxes/wm... almost everytime i change linux to develop/run i have to redisign the forms and move away the components of forms to avoid their overlap.Is there any solution to this? or its a linux font problem?
almost everytime i change linux to develop/run i have to redisign the forms and move away the components of forms to avoid their overlap.Is there any solution to this? or its a linux font problem?
Before the next release could you please fix the long standing bug relating to the failure of the lazarus uses clause to recognise relative paths in the lpr file.eg: uses '../../commonfiles/fred.pas' (clicking the units button shows all files but clicking on the files fails to open them)
eg: uses '../../commonfiles/fred.pas'
I really like the new release candidate, but I found a problem After compiling a weblaz HTTP server application which was created with Lazarus 1.6.4 the project does not work anymore.The routing seems to not work correctly. The HTTP server just responses :Module Error The application encountered the following error: Error: Not foundIt seems like the routing is not working, I cannot reach any of the existing OnRequest Methods of the TFPWebModule.The bug is really easy to produce. Just install weblaz (shipped with Lazarus 1.8RC4), and create a new HTTP server application. A simple test does not even require the use of actions, you can just create the following OnRequest method:Code: Pascal [Select]procedure TFPWebModule1.DataModuleRequest(Sender: TObject; ARequest: TRequest; AResponse: TResponse; Var Handled: Boolean);begin AResponse.Content:='This test is working, great :)'; AResponse.Code:=200; Handled:=True;end; Thank you for your work
https://bugs.freepascal.org/view.php?id=32266