ControlsDemo and simple app with TMenuBar crashes on Slackware64

Issue #242 new
Amaldeli created an issue

Tested ControlsDemo with Slackware64 14.2 compiled using Rio10.3.3/FMXLinux1.45:

Clicking the main menu “Load Style...” entry gives an error in terminal window:

(ControlsDemo:1900): Gtk-WARNING **: Failed to fetch network locations: The specified location is not mounted

Clicking the main menu “About...” entry gives an error in terminal window:

Exception EPrivilege in module <unknown> at 00007F98BAADB055.
Privileged instruction.

and the application crashes.

TabControl is disabled until the window was moves using mouse on title bar.

  • Switch to 3D
  • Hovering with the mouse over the TGlowEffect
  • Clicking on Glyph button
  • Clicking TPopupBox Item1
  • Clicking on TCornerButton

crashes the app with Exception EPrivilege.

(List may be incomplete)

Hope something can be fixed here…

Thank you!

Comments (5)

  1. Amaldeli reporter

    Also a simple app with TMenuBar and some child items crash on slackware64

    unit Unit1;
    
    interface
    
    uses FMX.Forms, FMX.Controls, FMX.Menus, System.Classes, FMX.Types;
    
    type
      TForm1 = class(TForm)
        MenuBar1: TMenuBar;
        MenuItem1: TMenuItem;
        MenuItem2: TMenuItem;
        MenuItem3: TMenuItem;
        MenuItem4: TMenuItem;
      private
        { Private declarations }
      public
        { Public declarations }
      end;
    
    var
      Form1: TForm1;
    
    implementation
    
    {$R *.fmx}
    
    end.
    

    See Project1.zip

  2. Log in to comment