From bugtracker at gambaswiki.org Mon Apr 10 14:23:48 2023 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Mon, 10 Apr 2023 12:23:48 GMT Subject: [Gambas-bugtracker] Bug #2733: ListView - Scrolling at the moment of Selection Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.2733&from=L21haW4- Claus DIETRICH reported a new bug. Summary ------- ListView - Scrolling at the moment of Selection Type : Bug Priority : Medium Gambas version : 3.18 Product : GUI components Description ----------- I am using a ListView with station icons for a web-radio application. When I don't touch the GUI for a while - lets say for something like 10 Minutes - it happens from time to time, that after having scrolled through the list of radio stations (with the mouse wheel) the newly selected station is not displayed and the ListView scrolls to a different position (see attached screen video where it scrolls back almost to its original position). In such a case it often happens that the selected station is not the one which was selected. I use the MouseUp-Event of the ListView for the selection-routine. The ListView is set to sorted. Public Sub ListView1_MouseUp() Dim hContext As Object Dim hMenuItem As Object 'For debugging only Print Print "ListView1.Current.text: "; ListView1.Current.text Print "ListView1.Item.Text: "; ListView1.Item.text Print "ListView1.FindAt(Mouse.x, Mouse.y) :"; ListView1.FindAt(Mouse.x, Mouse.y) Print "ListView1.Selection: "; For Each s As String In ListView1.Selection Print "key: "; S; " "; Next Print If ListView1.Count = 0 Then Return If Mouse.left 'Ignore selection of radio station is already running If ListView1.Current.text = TextLabelName.text Then Return Endif Wait StartStream(ListView1.Current.text) Else If Mouse.Right 'Generate the context menu hContext = New Menu(Me) As "mnuContext" 'Generate the menu items hMenuItem = New Menu(hContext) As "Edit_Item" hMenuItem.Text = (("Edit")) hMenuItem = New Menu(hContext) As "Delete_Item" hMenuItem.Text = (("Delete")) 'Show context menu hContext.Popup End If End If you need the app I'll send it but you have to import a M3U-playlist with all stations. I can provide this list and the app has an according import function. Best Easter Greetings Claus System information ------------------ [System] Gambas=3.18.1 OperatingSystem=Linux Distribution=Linux Mint 20.3 Una Kernel=5.4.0-146-generic Architecture=x86_64 Cores=4 Memory=7833M Language=de_DE.UTF-8 Desktop=CINNAMON DesktopResolution=96 DesktopScale=7 WidgetTheme=mint-y Font=Ubuntu,10 [Programs] gcc=gcc (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0 [Libraries] Cairo=libcairo.so.2.11600.0 Curl=libcurl.so.4.6.0 DBus=libdbus-1.so.3.19.11 GDK2=libgdk-x11-2.0.so.0.2400.32 GDK3=libgdk-3.so.0.2404.16 GStreamer=libgstreamer-1.0.so.0.1603.0 GTK+2=libgtk-x11-2.0.so.0.2400.32 GTK+3=libgtk-3.so.0.2404.16 OpenGL=libGL.so.1.7.0 Poppler=libpoppler.so.97.0.0 QT5=libQt5Core.so.5.12.8 RSvg=librsvg-2.so.2.47.0 SDL=libSDL-1.2.so.0.11.4 SQLite=libsqlite3.so.0.8.6 [Environment] CINNAMON_VERSION=5.2.7 DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus DESKTOP_SESSION=cinnamon DISPLAY=:0 GB_GUI=gb.gtk3 GDMSESSION=cinnamon GDM_LANG=de_DE GIO_LAUNCHED_DESKTOP_FILE=/usr/share/applications/gambas3.desktop GIO_LAUNCHED_DESKTOP_FILE_PID=14464 GJS_DEBUG_OUTPUT=stderr GJS_DEBUG_TOPICS=JS ERROR;JS LOG GNOME_DESKTOP_SESSION_ID=this-is-deprecated GPG_AGENT_INFO=/run/user/1000/gnupg/S.gpg-agent:0:1 GTK3_MODULES=xapp-gtk3-module GTK_MODULES=gail:atk-bridge GTK_OVERLAY_SCROLLING=1 HOME= LANG=de_DE.UTF-8 LANGUAGE=de_DE.UTF-8 LC_ADDRESS=de_DE.UTF-8 LC_ALL=de_DE.UTF-8 LC_IDENTIFICATION=de_DE.UTF-8 LC_MEASUREMENT=de_DE.UTF-8 LC_MONETARY=de_DE.UTF-8 LC_NAME=de_DE.UTF-8 LC_NUMERIC=de_DE.UTF-8 LC_PAPER=de_DE.UTF-8 LC_TELEPHONE=de_DE.UTF-8 LC_TIME=de_DE.UTF-8 LOGNAME= PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin PWD= QT_ACCESSIBILITY=1 QT_LOGGING_RULES=*.debug=false QT_QPA_PLATFORMTHEME=qt5ct SESSION_MANAGER=local/:@/tmp/.ICE-unix/1239,unix/:/tmp/.ICE-unix/1239 SHELL=/bin/bash SHLVL=0 SSH_AGENT_PID=1312 SSH_AUTH_SOCK=/run/user/1000/keyring/ssh TZ=:/etc/localtime USER= XAUTHORITY=/.Xauthority XDG_CONFIG_DIRS=/etc/xdg/xdg-cinnamon:/etc/xdg XDG_CURRENT_DESKTOP=X-Cinnamon XDG_DATA_DIRS=/usr/share/cinnamon:/usr/share/gnome:/.local/share/flatpak/exports/share:/var/lib/flatpak/exports/share:/usr/local/share:/usr/share XDG_GREETER_DATA_DIR=/var/lib/lightdm-data/ XDG_RUNTIME_DIR=/run/user/1000 XDG_SEAT=seat0 XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0 XDG_SESSION_CLASS=user XDG_SESSION_DESKTOP=cinnamon XDG_SESSION_ID=c2 XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session0 XDG_SESSION_TYPE=x11 XDG_VTNR=7 From bugtracker at gambaswiki.org Mon Apr 10 14:42:44 2023 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Mon, 10 Apr 2023 12:42:44 GMT Subject: [Gambas-bugtracker] Bug #2733: ListView - Scrolling at the moment of Selection In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.2733&from=L21haW4- Comment #1 by Claus DIETRICH: I was lucky and caught the ListView when it selected a wrong radio station - see attached screen video -. As you can see in the IDE-Konsole the "Current"-item corresponds with the selection. So the Listview simply selects a wrong item. In this case the selected item was far away from the one I clicked on. Strangely this happens only when I didn't use the ListView for a while. Regards Claus ---------------------------------------------------------------------------- Attachment: Kazam_screencast_00010.mp4 From bugtracker at gambaswiki.org Mon Apr 10 18:46:52 2023 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Mon, 10 Apr 2023 16:46:52 GMT Subject: [Gambas-bugtracker] Bug #2733: ListView - Scrolling at the moment of Selection In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.2733&from=L21haW4- Comment #2 by Claus DIETRICH: Meanwhile I found a way to reproduce the issue reliably: 1. Clicking on another app, so that the web-radio-app looses the focus. 2. Hovering with the mouse over the ListView and scrolling with the mouse wheel 3. Selecting a list-item at a very different position With this the ListView always selects an item in the scroll area which was displayed just before it lost its focus. So the control assumes that the list is still in same position as it was when it lost the focus. The scroll-event however is firing well and the ScrollY-Value is updated - no matter whether the control has the focus or not. But it seems that the mouse assumes a different (not updated) position when the control was scrolled without having the focus. Best regards Claus From bugtracker at gambaswiki.org Mon Apr 10 20:36:08 2023 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Mon, 10 Apr 2023 18:36:08 GMT Subject: [Gambas-bugtracker] Bug #2733: ListView - Scrolling at the moment of Selection In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.2733&from=L21haW4- Comment #3 by Claus DIETRICH: I prepared an app reproducing it - see attached file. Start it, click on another app, so that it looses the focus. Scroll with the mouse wheel up to 100 and click on an item in that range. The selected item key will be <= 10. Strange: When removing the line "ListView1.item.EnsureVisible" it doesn't happen, but I need that line in my web-radio-app. Best regards Claus ---------------------------------------------------------------------------- Attachment: Demo_ListView_Scroll_Bug-0.0.1.tar.gz From bugtracker at gambaswiki.org Tue Apr 11 11:50:50 2023 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Tue, 11 Apr 2023 09:50:50 GMT Subject: [Gambas-bugtracker] Bug #2733: ListView - Scrolling at the moment of Selection In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.2733&from=L21haW4- Comment #4 by Bruce STEERS: Are you aware that ListView1.Item is NOT the current selected item. You should use ListView1.Current.EnsureVisible moving/clicking the mouse and keyboard do not move the ListView1.Item internal cursor. you use ListView1.MoveTo(0) this sets internal cursor to item 0 then when you use ListView1.Item.EnsureVisible you are requesting item 0 is visiblebecause you have not set the internal cursor. Try using ListView1.Current.EnsureVisible or use ListView1.MoveCurrent to put the internal cursor to the current selected item. From bugtracker at gambaswiki.org Tue Apr 11 12:04:35 2023 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Tue, 11 Apr 2023 10:04:35 GMT Subject: [Gambas-bugtracker] Bug #2733: ListView - Scrolling at the moment of Selection In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.2733&from=L21haW4- Beno?t MINISINI changed the state of the bug to: Accepted. From bugtracker at gambaswiki.org Tue Apr 11 12:13:31 2023 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Tue, 11 Apr 2023 10:13:31 GMT Subject: [Gambas-bugtracker] Bug #2733: ListView - Scrolling at the moment of Selection In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.2733&from=L21haW4- Comment #5 by Claus DIETRICH: Hi Bruce Thanks for your comments. I am aware of that. I moved the internal cursor and used the selected-method to select it, which makes it the "current" one. Meanwhile I found a solution by moving the line "Try ListView1.item.EnsureVisible" From ... Public Sub Form_Activate() Try ListView1.item.EnsureVisible End to ... Public Sub Form_Arrange() Try ListView1.item.EnsureVisible End I wasn't aware that the Activate-event fires also, when the form regains the focus. However, since I still have no explanation for this trial-and-error-solution, I leave it up to Benoit to decide whether it is worth to have a look into the ListView. With best regards Claus From bugtracker at gambaswiki.org Tue Apr 11 12:16:36 2023 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Tue, 11 Apr 2023 10:16:36 GMT Subject: [Gambas-bugtracker] Bug #2733: ListView - Scrolling at the moment of Selection In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.2733&from=L21haW4- Comment #6 by Bruce STEERS: If Your ListView1_MouseUp() event contained the following... ListView1.MoveCurrent() as it's first command before using ListView1.Item then that will move the internal cursor from item 0 to the current selection on click and your code should work better. Hope that all makes sense Claus :) So in summary, The internal cursor (ListView1.Item) does not move around automatically for you. ListView1.Item is set using .MoveTo() , .MoveNext() .MoveFirst(), MoveCurrent() etc and you should only use ListView1.Item if you are using the internal cursor methods to position it where you want it. otherwise just use ListView1.Current to get the current selection. Respects BruceS Bruce STEERS changed the state of the bug to: Opened. From bugtracker at gambaswiki.org Tue Apr 11 12:20:50 2023 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Tue, 11 Apr 2023 10:20:50 GMT Subject: [Gambas-bugtracker] Bug #2733: ListView - Scrolling at the moment of Selection In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.2733&from=L21haW4- Comment #7 by Bruce STEERS: aah, well the demo code you posted did no such thing and just tried to use LitsView1.Item.EnsureVisible while leaving .Item at 0 And yes, the form regaining focus is the Activate() event From bugtracker at gambaswiki.org Wed Apr 12 00:01:57 2023 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Tue, 11 Apr 2023 22:01:57 GMT Subject: [Gambas-bugtracker] Bug #2733: ListView - Scrolling at the moment of Selection In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.2733&from=L21haW4- Comment #8 by Beno?t MINISINI: I don't see any bug here. The value of 'ListView.Item' in Form_Activate() is not predictable. It has the effect to ensure that the first item is visible, and so make the ListView scroll before the mouse click is checked. Beno?t MINISINI changed the state of the bug to: Rejected. From bugtracker at gambaswiki.org Wed Apr 12 01:41:45 2023 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Tue, 11 Apr 2023 23:41:45 GMT Subject: [Gambas-bugtracker] Bug #2734: Gui window shrinks to size of window memory using gtk-3 Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.2734&from=L21haW4- Brian G reported a new bug. Summary ------- Gui window shrinks to size of window memory using gtk-3 Type : Bug Priority : Medium Gambas version : Master Product : GTK+3 component Description ----------- When a form is defined, which contains a window menu and A VBOX( does not matter if vbox contains any controls and the form Arrangement is fill, and the AutoResize and Expand are set to true. When the window opens it will slowly resize it's self to the height of the menu. It does not do this with QT only with gtk-3 See following script, try running it with gtk-3 and qt ------------------------------------------------------------------------- #!/usr/bin/env gbs3 'Auto Generated Script 04/11/2023 23:32:43.126 Version (3.18.90) #Script Title="Test qt to gui conversion test" #Script Startup="FMain" #Script Version="0.0.1" Use "gb.image" Use "gb.gui" Use "gb.form" Use "gb.eval" Use "gb.eval.highlight" Use "gb.form.dialog" Use "gb.util" Use "gb.form.editor" Use "gb.settings" Use "gb.form.mdi" Use "gb.term" Use "gb.form.terminal" Use "gb.signal" class FMain ' Gambas class file End class form FMain # Gambas Form File 3.0 { Form Form MoveScaled(0,0,135,103) Background = Color.ButtonBackground Arrangement = Arrange.Fill AutoResize = True { Menu1 Menu Text = ("Menu1") } { Menu2 Menu Text = ("Menu2") } { Menu3 Menu Text = ("Menu3") } { Menu4 Menu Text = ("Menu4") } { Menu5 Menu Text = ("Menu5") } { VBox1 VBox MoveScaled(0,0,129,88) Background = Color.Background Expand = True } } End form System information ------------------ [System] Gambas=3.18.90 OperatingSystem=Linux Distribution=Linux Mint 20.3 Una Kernel=5.15.0-69-generic Architecture=x86_64 Cores=8 Memory=13935M Language=en_US.UTF-8 Desktop=MATE DesktopResolution=96 DesktopScale=7 WidgetTheme=proxy Font=Ubuntu,10 [Programs] clang=clang version 10.0.0-4ubuntu1 gcc=gcc (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0 git=git version 2.25.1 [Libraries] Cairo=libcairo.so.2.11600.0 Curl=libcurl.so.4.6.0 DBus=libdbus-1.so.3.19.11 GDK2=libgdk-x11-2.0.so.0.2400.32 GDK3=libgdk-3.so.0.2404.16 GStreamer=libgstreamer-1.0.so.0.1603.0 GTK+2=libgtk-x11-2.0.so.0.2400.32 GTK+3=libgtk-3.so.0.2404.16 OpenGL=libGL.so.1.7.0 Poppler=libpoppler.so.97.0.0 QT5=libQt5Core.so.5.12.8 RSvg=librsvg-2.so.2.47.0 SDL=libSDL2-2.0.so.0.10.0 SQLite 3=libsqlite3.so.0.8.6 [Environment] COMPIZ_CONFIG_PROFILE=mint DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-e9hT2c3D0F,guid=a612f5082d134f4f44edc0016435d7b2 DISPLAY=:50 EDITOR=/usr/bin/nano GB_GUI=gb.qt5 GIO_LAUNCHED_DESKTOP_FILE_PID=950741 GPG_AGENT_INFO=/run/user/1000/gnupg/S.gpg-agent:0:1 GTK_MODULES=gail:atk-bridge GTK_OVERLAY_SCROLLING=0 HOME= LANG=en_US.UTF-8 LANGUAGE=en_US.UTF-8 LC_ADDRESS=en_US.UTF-8 LC_ALL=en_US.UTF-8 LC_IDENTIFICATION=en_US.UTF-8 LC_MEASUREMENT=en_US.UTF-8 LC_MONETARY=en_US.UTF-8 LC_NAME=en_US.UTF-8 LC_NUMERIC=en_US.UTF-8 LC_PAPER=en_US.UTF-8 LC_TELEPHONE=en_US.UTF-8 LC_TIME=en_US.UTF-8 LD_LIBRARY_PATH=:/usr/local/easysoft/access:/usr/local/easysoft/lib LIBVIRT_DEFAULT_URI=qemu:///system LOGNAME= MATE_DESKTOP_SESSION_ID=this-is-deprecated MOTD_SHOWN=pam PAPERSIZE=letter PATH=/.local/bin:/bin:/.local/bin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin PICO_SDK_PATH=/Projects/picomite/pico/pico-sdk PULSE_CLIENTCONFIG=/.x2go/C--50-1681250220_stDMATE_dp24/.pulse-client.conf PWD= QT_ACCESSIBILITY=1 QT_FONT_DPI=96 QT_GRAPHICSSYSTEM=native QT_LOGGING_RULES=*.debug=false QT_QPA_PLATFORMTHEME=qt5ct QT_SCALE_FACTOR=1 SESSION_MANAGER=local/:@/tmp/.ICE-unix/943329,unix/:/tmp/.ICE-unix/943329 SHELL=/usr/bin/gsh SHLVL=1 SSH_AUTH_SOCK=/.x2go/C--50-1681250220_stDMATE_dp24/ssh-agent.PID SSH_CLIENT=73.66.0.38 56800 22 SSH_CONNECTION=73.66.0.38 56800 192.168.250.8 22 STARTUP=/usr/bin/im-launch /usr/bin/env LD_LIBRARY_PATH=:/usr/local/easysoft/access:/usr/local/easysoft/lib mate-session TERM=xterm TZ=:/etc/localtime USER= X2GO_AGENT_PID=942990 X2GO_SESSION=-50-1681250220_stDMATE_dp24 XAUTHORITY=/.Xauthority XDG_CURRENT_DESKTOP=MATE XDG_DATA_DIRS=/.local/share/flatpak/exports/share:/var/lib/flatpak/exports/share:/usr/local/share:/usr/share XDG_RUNTIME_DIR=/run/user/1000 XDG_SESSION_CLASS=user XDG_SESSION_ID=243 XDG_SESSION_TYPE=tty XSESSION_EXEC=mate-session From bugtracker at gambaswiki.org Wed Apr 12 05:22:19 2023 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Wed, 12 Apr 2023 03:22:19 GMT Subject: [Gambas-bugtracker] Bug #2734: Gui window shrinks to size of window memory using gtk-3 In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.2734&from=L21haW4- Comment #1 by Brian G: title should say Gui window shrinks to size of window menu using gtk-3 auto correst again! From bugtracker at gambaswiki.org Wed Apr 12 18:31:34 2023 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Wed, 12 Apr 2023 16:31:34 GMT Subject: [Gambas-bugtracker] Bug #2733: ListView - Scrolling at the moment of Selection In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.2733&from=L21haW4- Comment #9 by Claus DIETRICH: Hi Benoit Thanks a lot for taking a look at this. Please apologize - I wasn't aware of the sequence of events as described by you. Using the Arrange-event solved it. With best regards Claus From bugtracker at gambaswiki.org Sun Apr 16 01:47:21 2023 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Sat, 15 Apr 2023 23:47:21 GMT Subject: [Gambas-bugtracker] Bug #2710: opensuse rpm generation, faulty In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.2710&from=L21haW4- Comment #2 by Brian G: package not signed Brian G changed the state of the bug to: Accepted. From bugtracker at gambaswiki.org Sun Apr 16 13:02:55 2023 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Sun, 16 Apr 2023 11:02:55 GMT Subject: [Gambas-bugtracker] Bug #2735: Could PageDown then PageUp goto the same line? Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.2735&from=L21haW4- Bruce STEERS reported a new bug. Summary ------- Could PageDown then PageUp goto the same line? Type : Request Priority : Low Gambas version : Master Product : Development Environment Description ----------- With TextEditor if you press page down then page up the cursor will be on the previous line to where it was. I've tried playing with the KeyPress events to adjust but cannot seem to get it to work. I would like it so if I am on say line 10 then i press page down then page up I will be on line 10 again not line 9. Respects BruceS System information ------------------ [System] Gambas=3.18.90 427a934a8 (bruces-patched) OperatingSystem=Linux Distribution=Linux Mint 21 Vanessa Kernel=5.15.0-69-generic Architecture=x86_64 Cores=4 Memory=7869M Language=en_GB.UTF-8 Desktop=MATE DesktopResolution=96 DesktopScale=8 WidgetTheme=clearlooks Font=Ubuntu,11 [Programs] gcc=gcc (Ubuntu 11.3.0-1ubuntu1~22.04) 11.3.0 git=git version 2.34.1 [Libraries] Cairo=libcairo.so.2.11600.0 Curl=libcurl.so.4.7.0 DBus=libdbus-1.so.3.19.13 GDK2=libgdk-x11-2.0.so.0.2400.33 GDK3=libgdk-3.so.0.2404.29 GStreamer=libgstreamer-1.0.so.0.2003.0 GTK+2=libgtk-x11-2.0.so.0.2400.33 GTK+3=libgtk-3.so.0.2404.29 OpenGL=libGL.so.1.7.0 Poppler=libpoppler.so.118.0.0 QT5=libQt5Core.so.5.15.3 RSvg=librsvg-2.so.2.48.0 SDL=libSDL2-2.0.so.0.18.2 SQLite 3=libsqlite3.so.0.8.6 [Environment] CLUTTER_BACKEND=x11 CLUTTER_IM_MODULE=ibus COMPIZ_CONFIG_PROFILE=mint DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus DEFAULTS_PATH=/usr/share/gconf/mate.default.path DESKTOP_AUTOSTART_ID=1090e10379df2363c5168163758556450500000042610003 DESKTOP_SESSION=mate DISPLAY=:0 GB_GUI=gb.gtk3 GDMSESSION=mate GDM_LANG=en_GB GPG_AGENT_INFO=/run/user/1000/gnupg/S.gpg-agent:0:1 GTK3_MODULES=xapp-gtk3-module GTK_IM_MODULE=ibus GTK_MODULES=gail:atk-bridge GTK_OVERLAY_SCROLLING=0 HOME= LANG=en_GB.UTF-8 LANGUAGE=en_GB.UTF-8 LC_ADDRESS=en_GB.UTF-8 LC_ALL=en_GB.UTF-8 LC_IDENTIFICATION=en_GB.UTF-8 LC_MEASUREMENT=en_GB.UTF-8 LC_MONETARY=en_GB.UTF-8 LC_NAME=en_GB.UTF-8 LC_NUMERIC=en_GB.UTF-8 LC_PAPER=en_GB.UTF-8 LC_TELEPHONE=en_GB.UTF-8 LC_TIME=en_GB.UTF-8 LIBVIRT_DEFAULT_URI=qemu:///system LOGNAME= MANDATORY_PATH=/usr/share/gconf/mate.mandatory.path MATE_DESKTOP_SESSION_ID=this-is-deprecated PAPERSIZE=a4 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin PWD= QT_ACCESSIBILITY=1 QT_FONT_DPI=96 QT_IM_MODULE=ibus QT_QPA_PLATFORMTHEME=qt5ct QT_SCALE_FACTOR=1 SESSION_MANAGER=local/:@/tmp/.ICE-unix/4261,unix/:/tmp/.ICE-unix/4261 SHELL=/bin/bash SHLVL=0 SSH_AUTH_SOCK=/run/user/1000/keyring/ssh TZ=:/etc/localtime USER= XAUTHORITY=/.Xauthority XDG_CONFIG_DIRS=/etc/xdg/xdg-mate:/etc/xdg XDG_CURRENT_DESKTOP=MATE XDG_DATA_DIRS=/usr/share/mate:/.local/share/flatpak/exports/share:/var/lib/flatpak/exports/share:/usr/local/share:/usr/share XDG_GREETER_DATA_DIR=/var/lib/lightdm-data/ XDG_RUNTIME_DIR=/run/user/1000 XDG_SEAT=seat0 XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0 XDG_SESSION_CLASS=user XDG_SESSION_DESKTOP=mate XDG_SESSION_ID=c1 XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session0 XDG_SESSION_TYPE=x11 XDG_VTNR=7 XMODIFIERS=@im=ibus From bugtracker at gambaswiki.org Sun Apr 16 13:17:07 2023 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Sun, 16 Apr 2023 11:17:07 GMT Subject: [Gambas-bugtracker] Bug #2735: Could PageDown then PageUp goto the same line? In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.2735&from=L21haW4- Comment #1 by Bruce STEERS: I have got something to work now. I incremented where PageUp goes to +1. Not sure how correct it is... TextEditor.class changes here https://gitlab.com/bsteers4/gambas/-/commit/b6ecaea2ab071720bc91d3081d5016c370d18b63 Respects From bugtracker at gambaswiki.org Mon Apr 17 17:49:53 2023 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Mon, 17 Apr 2023 15:49:53 GMT Subject: [Gambas-bugtracker] Bug #2736: Error in gb.gui.base.splitter on Raspberry PI 3b with Touchscreen Display Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.2736&from=L21haW4- Dirk LANTZSCH reported a new bug. Summary ------- Error in gb.gui.base.splitter on Raspberry PI 3b with Touchscreen Display Type : Bug Priority : Medium Gambas version : 3.18 Product : GUI components Description ----------- Hello, if i use the Splitter Component in a Programm which runs on a Raspberry Pi with Touchscreen and i try to move the splitter with my Finger on the Touchscreen i get the following Error Message: This application has raised an unexpected error and must abort. Null objekt(#13). [gb.gui.base].Splitter.Resize_MouseMove.393 The Error only happens if i use the Touchscreen directly to move the Splitter, if i first use a connected mouse or a VNCClient to move the Splitter and than use the Touchscreen to move the Splitter no Error occurs. I think the Resize_MouseDown() Function in the splitter.class isn't called by the Touchscreen click Event (probably since there is simply no MouseDown event), so the $aLayout Variable stays Null. I can't debug the Problem really good, because the only Touchscreen i have has a 800x480 Resolution, so the Gambas IDE isn't really usable. Do i have a chance to change this behaviour or can i Disable the Splitter, so that no unintentional splinter displacement is possible? I tried to set the Enable Proberty of the Splitter to False, but all components placed in the Splitter are disabled if i do this, so this is no option for me. Thanks for all your work Kind regards Dirk System information ------------------ [System] Gambas=3.18.1 911557f (stable) OperatingSystem=Linux Distribution=debian 11.6 Kernel=6.1.19-v7+ Architecture=arm Cores=4 Memory=922M Language=de_DE.UTF-8 Desktop=LXDE DesktopResolution=96 DesktopScale=9 WidgetTheme=xflat Font=PibotoLt,12 [Programs] gcc=gcc (Raspbian 10.2.1-6+r1) 10.2.1 20210110 git=git version 2.30.2 [Libraries] Cairo=libcairo.so.2.11600.0 Curl=libcurl.so.4.7.0 DBus=libdbus-1.so.3.19.15 GDK2=libgdk-x11-2.0.so.0.2400.33 GDK3=libgdk-3.so.0.2404.20 GStreamer=libgstreamer-1.0.so.0.1804.0 GTK+2=libgtk-x11-2.0.so.0.2400.33 GTK+3=libgtk-3.so.0.2404.20 OpenGL=libGL.so.1.7.0 Poppler=libpoppler.so.102.0.0 QT5=libQt5Core.so.5.15.2 RSvg=librsvg-2.so.2.47.0 SDL=libSDL-1.2.so.0.11.4 SQLite=libsqlite3.so.0.8.6 [Environment] DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus DESKTOP_SESSION=LXDE- DISPLAY=:10.0 GB_GUI=gb.gtk3 GPG_AGENT_INFO=/run/user/1000/gnupg/S.gpg-agent:0:1 HOME= LANG=de_DE.UTF-8 LC_ALL=de_DE.UTF-8 LOGNAME= NO_AT_BRIDGE=1 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/games:/usr/games PULSE_SCRIPT=/etc/xrdp/pulse/default.pa PWD= QT_LOGGING_RULES=*.debug=false QT_QPA_PLATFORMTHEME=qt5ct SAL_USE_VCLPLUGIN=gtk3 SHELL=/bin/bash SSH_AGENT_PID=30960 SSH_AUTH_SOCK=/tmp/ssh-RxAiPJ3313y1/agent.30880 TEXTDOMAIN=Linux-PAM TZ=:/etc/localtime UID=1000 USER= XDG_CONFIG_DIRS=/etc/xdg XDG_CONFIG_HOME=/.config XDG_CURRENT_DESKTOP=LXDE XDG_DATA_DIRS=/usr/share/fkms:/usr/local/share:/usr/share/ras-ui-overrides:/usr/share:/usr/share/gdm:/var/lib/menu-xdg XDG_MENU_PREFIX=lxde-- XDG_RUNTIME_DIR=/run/user/1000 XDG_SESSION_CLASS=user XDG_SESSION_ID=c1 XDG_SESSION_TYPE=x11 XRDP_PULSE_SINK_SOCKET=xrdp_chansrv_audio_out_socket_10 XRDP_PULSE_SOURCE_SOCKET=xrdp_chansrv_audio_in_socket_10 XRDP_SESSION=1 XRDP_SOCKET_PATH=/run/xrdp/sockdir _LXSESSION_PID=30880 From bugtracker at gambaswiki.org Tue Apr 18 21:22:18 2023 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Tue, 18 Apr 2023 19:22:18 GMT Subject: [Gambas-bugtracker] Bug #2737: TermnalView colours go wrong on resize Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.2737&from=L21haW4- Bruce STEERS reported a new bug. Summary ------- TermnalView colours go wrong on resize Type : Bug Priority : Medium Gambas version : Master Product : Unknown Description ----------- Colors in a terminalview object get all messed up when resizing the view. Will attach a clip... System information ------------------ [System] Gambas=3.18.90 427a934a8 (bruces-patched) OperatingSystem=Linux Distribution=Linux Mint 21 Vanessa Kernel=5.15.0-69-generic Architecture=x86_64 Cores=4 Memory=7869M Language=en_GB.UTF-8 Desktop=MATE DesktopResolution=96 DesktopScale=7 WidgetTheme=clearlooks Font=Ubuntu,10 [Programs] gcc=gcc (Ubuntu 11.3.0-1ubuntu1~22.04) 11.3.0 git=git version 2.34.1 [Libraries] Cairo=libcairo.so.2.11600.0 Curl=libcurl.so.4.7.0 DBus=libdbus-1.so.3.19.13 GDK2=libgdk-x11-2.0.so.0.2400.33 GDK3=libgdk-3.so.0.2404.29 GStreamer=libgstreamer-1.0.so.0.2003.0 GTK+2=libgtk-x11-2.0.so.0.2400.33 GTK+3=libgtk-3.so.0.2404.29 OpenGL=libGL.so.1.7.0 Poppler=libpoppler.so.118.0.0 QT5=libQt5Core.so.5.15.3 RSvg=librsvg-2.so.2.48.0 SDL=libSDL2-2.0.so.0.18.2 SQLite 3=libsqlite3.so.0.8.6 [Environment] CLUTTER_BACKEND=x11 CLUTTER_IM_MODULE=ibus COMPIZ_CONFIG_PROFILE=mint DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus DEFAULTS_PATH=/usr/share/gconf/mate.default.path DESKTOP_AUTOSTART_ID=106c4146f7699b962e168182734733917900000042070004 DESKTOP_SESSION=mate DISPLAY=:0 EDITOR=pluma GB_GUI=gb.gtk3 GDMSESSION=mate GDM_LANG=en_GB GPG_AGENT_INFO=/run/user/1000/gnupg/S.gpg-agent:0:1 GTK3_MODULES=xapp-gtk3-module GTK_IM_MODULE=ibus GTK_MODULES=gail:atk-bridge GTK_OVERLAY_SCROLLING=0 HOME= LANG=en_GB.UTF-8 LANGUAGE=en_GB.UTF-8 LC_ADDRESS=en_GB.UTF-8 LC_ALL=en_GB.UTF-8 LC_IDENTIFICATION=en_GB.UTF-8 LC_MEASUREMENT=en_GB.UTF-8 LC_MONETARY=en_GB.UTF-8 LC_NAME=en_GB.UTF-8 LC_NUMERIC=en_GB.UTF-8 LC_PAPER=en_GB.UTF-8 LC_TELEPHONE=en_GB.UTF-8 LC_TIME=en_GB.UTF-8 LIBVIRT_DEFAULT_URI=qemu:///system LOGNAME= MANDATORY_PATH=/usr/share/gconf/mate.mandatory.path MATE_DESKTOP_SESSION_ID=this-is-deprecated PAPERSIZE=a4 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin PWD= QT_ACCESSIBILITY=1 QT_FONT_DPI=96 QT_IM_MODULE=ibus QT_LOGGING_RULES=*.debug=false QT_QPA_PLATFORMTHEME=qt5ct QT_SCALE_FACTOR=1 SESSION_MANAGER=local/:@/tmp/.ICE-unix/4207,unix/:/tmp/.ICE-unix/4207 SHELL=/bin/bash SHLVL=1 SSH_AUTH_SOCK=/run/user/1000/keyring/ssh TZ=:/etc/localtime USER= XAUTHORITY=/.Xauthority XDG_CONFIG_DIRS=/etc/xdg/xdg-mate:/etc/xdg XDG_CURRENT_DESKTOP=MATE XDG_DATA_DIRS=/usr/share/mate:/.local/share/flatpak/exports/share:/var/lib/flatpak/exports/share:/usr/local/share:/usr/share XDG_GREETER_DATA_DIR=/var/lib/lightdm-data/ XDG_RUNTIME_DIR=/run/user/1000 XDG_SEAT=seat0 XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0 XDG_SESSION_CLASS=user XDG_SESSION_DESKTOP=mate XDG_SESSION_ID=c1 XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session0 XDG_SESSION_TYPE=x11 XDG_VTNR=7 XMODIFIERS=@im=ibus _=/usr/bin/gambas3 From bugtracker at gambaswiki.org Tue Apr 18 21:23:43 2023 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Tue, 18 Apr 2023 19:23:43 GMT Subject: [Gambas-bugtracker] Bug #2737: TermnalView colours go wrong on resize In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.2737&from=L21haW4- Comment #1 by Bruce STEERS: Clip. I use grep to highlight letters TE in the output, then i resize the view. ---------------------------------------------------------------------------- Attachment: screenrecord-2023-04-18_20.17.37.mp4 From bugtracker at gambaswiki.org Tue Apr 18 23:53:46 2023 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Tue, 18 Apr 2023 21:53:46 GMT Subject: [Gambas-bugtracker] Bug #2737: TermnalView colours go wrong on resize In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.2737&from=L21haW4- Beno?t MINISINI changed the state of the bug to: Accepted. From bugtracker at gambaswiki.org Wed Apr 19 19:57:19 2023 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Wed, 19 Apr 2023 17:57:19 GMT Subject: [Gambas-bugtracker] Bug #2737: TermnalView colours go wrong on resize In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.2737&from=L21haW4- Comment #2 by Beno?t MINISINI: Fixed in https://gitlab.com/gambas/gambas/-/commit/8d66be984de86956d60af7b595d514e695e5bda1. Beno?t MINISINI changed the state of the bug to: Fixed. From bugtracker at gambaswiki.org Wed Apr 19 20:01:31 2023 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Wed, 19 Apr 2023 18:01:31 GMT Subject: [Gambas-bugtracker] Bug #2736: Error in gb.gui.base.splitter on Raspberry PI 3b with Touchscreen Display In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.2736&from=L21haW4- Comment #1 by Beno?t MINISINI: Alas I have no touchscreen anywhere to test. Can you try with the QT5 component to see if you get the same error? Anyway, there are many temporary workarounds: in your project, declare an exported Splitter class. It will override (i.e. inherit) the Splitter class of the gb.guibase component, and that way you should be able to redefine any of its public methods (for example Resize_MouseDown) to fix what you want. Tell me if it works! Beno?t MINISINI changed the state of the bug to: NeedsInfo. From bugtracker at gambaswiki.org Wed Apr 19 20:02:57 2023 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Wed, 19 Apr 2023 18:02:57 GMT Subject: [Gambas-bugtracker] Bug #2734: Gui window shrinks to size of window memory using gtk-3 In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.2734&from=L21haW4- Comment #2 by Beno?t MINISINI: You could have joined the script as a file instead of embedding it into the bug description! From bugtracker at gambaswiki.org Thu Apr 20 03:28:30 2023 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Thu, 20 Apr 2023 01:28:30 GMT Subject: [Gambas-bugtracker] Bug #2737: TermnalView colours go wrong on resize In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.2737&from=L21haW4- Comment #3 by Bruce STEERS: Excellent, confirmed, thank you Ben :) From bugtracker at gambaswiki.org Thu Apr 20 16:05:30 2023 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Thu, 20 Apr 2023 14:05:30 GMT Subject: [Gambas-bugtracker] Bug #2738: Malfunctioning of Temp$ ? Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.2738&from=L21haW4- Gianluigi GRADASCHI reported a new bug. Summary ------- Malfunctioning of Temp$ ? Type : Bug Priority : Medium Gambas version : 3.18 Product : Unknown Description ----------- This example (attached) on Debian11 does not work, you create the graph but the report does not show the image of it Regards Gianluigi System information ------------------ [System] Gambas=3.18.2 5131d24 (stable) OperatingSystem=Linux Distribution= 11.6 Kernel=5.10.0-21-amd64 Architecture=x86_64 Cores=1 Memory=4934M Language=it_IT.UTF-8 Desktop=GNOME DesktopResolution=96 DesktopScale=8 WidgetTheme=adwaita Font=Cantarell,11 [Programs] gcc=gcc (Debian 10.2.1-6) 10.2.1 20210110 git=git version 2.30.2 [Libraries] Cairo=libcairo.so.2.11600.0 Curl=libcurl.so.4.7.0 DBus=libdbus-1.so.3.19.15 GDK2=libgdk-x11-2.0.so.0.2400.33 GDK3=libgdk-3.so.0.2404.20 GStreamer=libgstreamer-1.0.so.0.1804.0 GTK+2=libgtk-x11-2.0.so.0.2400.33 GTK+3=libgtk-3.so.0.2404.20 OpenGL=libGL.so.1.7.0 Poppler=libpoppler.so.102.0.0 QT5=libQt5Core.so.5.15.2 RSvg=librsvg-2.so.2.47.0 SDL=libSDL2-2.0.so.0.14.0 SQLite 3=libsqlite3.so.0.8.6 [Environment] DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus DESKTOP_SESSION=gnome DISPLAY=:0 GB_GUI=gb.gtk3 GDMSESSION=gnome GDM_LANG=it_IT.UTF-8 GIO_LAUNCHED_DESKTOP_FILE=/usr/share/applications/gambas3.desktop GIO_LAUNCHED_DESKTOP_FILE_PID=2942 GJS_DEBUG_OUTPUT=stderr GJS_DEBUG_TOPICS=JS ERROR;JS LOG GNOME_DESKTOP_SESSION_ID=this-is-deprecated GNOME_SETUP_DISPLAY=:1 GTK_MODULES=gail:atk-bridge HOME= IM_CONFIG_PHASE=1 INVOCATION_ID=4045f320637d46e69efb107235cc64d7 JOURNAL_STREAM=8:16861 LANG=it_IT.UTF-8 LC_ALL=it_IT.UTF-8 LOGNAME= MANAGERPID=1138 PATH=/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games PWD= QT_ACCESSIBILITY=1 QT_IM_MODULE=ibus QT_LOGGING_RULES=*.debug=false SESSION_MANAGER=local/:@/tmp/.ICE-unix/1281,unix/:/tmp/.ICE-unix/1281 SHELL=/bin/bash SHLVL=0 SSH_AGENT_LAUNCHER=openssh SSH_AUTH_SOCK=/run/user/1000/keyring/ssh TZ=:/etc/localtime USER= USERNAME= WAYLAND_DISPLAY=wayland-0 XAUTHORITY=/run/user/1000/.mutter-Xwaylandauth.F2HY31 XDG_CURRENT_DESKTOP=GNOME XDG_MENU_PREFIX=gnome- XDG_RUNTIME_DIR=/run/user/1000 XDG_SESSION_CLASS=user XDG_SESSION_DESKTOP=gnome XDG_SESSION_TYPE=wayland XMODIFIERS=@im=ibus _=/usr/bin/gnome-session From bugtracker at gambaswiki.org Fri Apr 21 15:17:50 2023 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Fri, 21 Apr 2023 13:17:50 GMT Subject: [Gambas-bugtracker] Bug #2736: Error in gb.gui.base.splitter on Raspberry PI 3b with Touchscreen Display In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.2736&from=L21haW4- Comment #2 by Dirk LANTZSCH: If i switch to QT5 it works. I tried it with 2 different Projects and switched multiple times. So it looks like a GTK Problem. I can stay with QT5, so for me the Problem is solved. If you want me to try and test with GTK more, send me a message and i do what i can. Anyway, thanks for the help. Kind regards lateralas Dirk LANTZSCH changed the state of the bug to: Accepted. From bugtracker at gambaswiki.org Fri Apr 21 19:57:41 2023 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Fri, 21 Apr 2023 17:57:41 GMT Subject: [Gambas-bugtracker] Bug #2734: Gui window shrinks to size of window memory using gtk-3 In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.2734&from=L21haW4- Comment #3 by Brian G: Sorry, It was just that the script was very short ---------------------------------------------------------------------------- Attachment: testgtk.gbs From bugtracker at gambaswiki.org Sat Apr 29 12:20:45 2023 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Sat, 29 Apr 2023 10:20:45 GMT Subject: [Gambas-bugtracker] Bug #2738: Malfunctioning of Temp$ ? In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.2738&from=L21haW4- Comment #1 by Beno?t MINISINI: I see the chart. Please elaborate: what does not work exactly? Why are you talking about Temp$()? Beno?t MINISINI changed the state of the bug to: NeedsInfo. From bugtracker at gambaswiki.org Sat Apr 29 14:00:04 2023 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Sat, 29 Apr 2023 12:00:04 GMT Subject: [Gambas-bugtracker] Bug #2738: Malfunctioning of Temp$ ? In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.2738&from=L21haW4- Comment #2 by Gianluigi GRADASCHI: The attached image shows how I see the report. I am not sure if it depends on Temp$ the cause could be another one to look for in gb.report2 KKing did a test on his Debian 11 LXQT and the project works fine. On other distributions it works (Mint, Ubuntu and Kubuntu). ---------------------------------------------------------------------------- Attachment: debian-malfunction.png Gianluigi GRADASCHI changed the state of the bug to: Accepted. From bugtracker at gambaswiki.org Sat Apr 29 14:04:08 2023 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Sat, 29 Apr 2023 12:04:08 GMT Subject: [Gambas-bugtracker] Bug #2738: Malfunctioning of Temp$ ? In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.2738&from=L21haW4- Comment #3 by Gianluigi GRADASCHI: I forgot to add that I tried to isolate the malfunction, unsuccessfully From bugtracker at gambaswiki.org Sat Apr 29 14:25:58 2023 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Sat, 29 Apr 2023 12:25:58 GMT Subject: [Gambas-bugtracker] Bug #2528: TextArea Refresh malfunction with GTK3 libraries In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.2528&from=L21haW4- Gianluigi GRADASCHI changed the state of the bug to: Abandoned. From bugtracker at gambaswiki.org Sat Apr 29 21:11:11 2023 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Sat, 29 Apr 2023 19:11:11 GMT Subject: [Gambas-bugtracker] Bug #2734: Gui window shrinks to size of window memory using gtk-3 In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.2734&from=L21haW4- Beno?t MINISINI changed the state of the bug to: Accepted. From bugtracker at gambaswiki.org Sat Apr 29 21:41:15 2023 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Sat, 29 Apr 2023 19:41:15 GMT Subject: [Gambas-bugtracker] Bug #2734: Gui window shrinks to size of window memory using gtk-3 In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.2734&from=L21haW4- Comment #4 by Beno?t MINISINI: It should be fixed by https://gitlab.com/gambas/gambas/-/commit/e6f5f7c940f806e688cf33881bde8740c69632c7 Beno?t MINISINI changed the state of the bug to: Fixed. From bugtracker at gambaswiki.org Sun Apr 30 18:18:11 2023 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Sun, 30 Apr 2023 16:18:11 GMT Subject: [Gambas-bugtracker] Bug #2723: Text being selected while debugging In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.2723&from=L21haW4- Comment #6 by Beno?t MINISINI: I can't reproduce at the moment. If I double click and move the mouse quickly at the same time, some text is selected, but the mouse up is correctly received by the TextEditor.