Elias Mårtenson

Results 40 comments of Elias Mårtenson

I'm seeing exactly the same error after upgrading to JavaFX 19. Everything works fine with JavaFX 18. I'm getting the following error when I try to show the component: ```...

I see the exact same problem with a very simple application. The code can be found here: https://github.com/cicakhq/potato_apns_provider The code is so simple that I simply cannot think of anything...

I managed to get it to work by manually adding the ebin directories for the rabbitmq modules: ``` code:add_path("/home/elias/prog/erl_test/deps/amqp_client/ebin"). code:add_path("/home/elias/prog/erl_test/deps/rabbit_common/ebin"). ``` This suggests that EDTS isn't properly initialising this when...

I went back to this, trying to find out what the problem is. I have been able to confirm that the `.edts` file is properly loaded and that the value...

Here is an example program that shows the issue: ``` (defpackage :clim-bugdemo (:use :cl) (:export #:bugdemo2-frame)) (in-package :clim-bugdemo) (clim:define-application-frame bugdemo2-frame () ((rows :initform nil :accessor bugdemo2-frame/rows :documentation "List of entries....

I also noticed that the table is not reflowed when the window is resized. To see this behaviour, simply resize the window that is displayed in the example.

@gabriel-laddel the problem isn't really that that it's not reflowing. I could deal with that manually, as you mentioned. The real problem is that the rendering of the column content...

The problem is that the maximum size for a single column is always the total width of the pane. The table layout should take all columns into account. Thus, if...

No. I mean that if the pane is 1000 pixels wide, and one column only contains 10 pixels of content, the second column should only be allowed to grow to...

Related IRC conversation: ``` What I can see is that HANDLE-REPAINT is called with my gadget (actually, the foo-DUMMY subclass). I then call WITH-SHEET-MEDIUM on this which returns an instance...