A fork of Gnome-control-center with some tweaks
Find a file
Pablo Correa Gómez a2b9620b1b network: keep track of radio buttons in connection editor with action
Hooking to all the toggled signals from all the buttons for executing
the same action is inneficient, and can potenticall end up in a segmentation
 fault due to some race in the signal emmission, where the active button
 gets deactivated before the clicked button is activated

Looking at the GTK4 code, in a radio group:

- The button which was previously active gets de-activated, emitting its
corresponding toggled signal.
- The active property for the clicked button gets set.
- The clicked button emits its toggled signal.

Therefore, if the first toggle signal gets processed before the active
property is set, there can be a race condition. We are seeing this downstream
at pmOS: https://gitlab.com/postmarketOS/pmaports/-/issues/1816

Instead of this racy behavior, follow upstream recommendation and keep track
of the state through a stateful signal.
2023-05-24 08:54:06 +00:00
.gitlab/issue_templates Split code of conduct into separate document 2022-11-13 22:04:37 +01:00
build-aux build-aux: Fix flatpak build manifest 2023-03-28 08:01:25 +00:00
data/icons icon: Remove circle outside of drawing area 2022-01-01 18:26:49 +00:00
docs Rename HACKING.md to the more standard CODING_STYLE.md 2022-11-15 13:15:07 +00:00
gettext/its build: Fix translation context missing from keyboard entries 2018-01-24 20:43:34 +01:00
man Updating "info" to "info-overview" in man page 2020-03-15 08:07:51 +00:00
panels network: keep track of radio buttons in connection editor with action 2023-05-24 08:54:06 +00:00
po Update Italian translation 2023-05-23 15:08:03 +00:00
search-provider Rename app-id to org.gnome.Settings 2022-01-21 13:08:50 +00:00
shell all: meson: do not specify resources from gresource files as dependencies 2023-05-24 08:34:14 +00:00
subprojects subprojects: revert accidental libgvc downgrade yet again 2023-04-03 08:16:29 +00:00
tests all: meson: do not specify resources from gresource files as dependencies 2023-05-24 08:34:14 +00:00
.gitignore gitignore: Add flatpak-builder directory to .gitignore 2023-03-28 07:53:40 +00:00
.gitlab-ci.yml ci: Build own GTK version 2023-03-14 19:42:59 +01:00
.gitmodules Switch to GTK4 & libadwaita 2021-12-14 22:34:21 -03:00
COPYING build: Update COPYING with new mailing address 2012-08-22 15:33:18 +01:00
gnome-control-center.doap Update maintainers to indicate I am not specifically focussed on Region & Language 2023-05-06 10:08:20 +02:00
meson.build meson: improve comment and fix deprecated functions 2023-05-02 11:33:31 +00:00
meson_options.txt log: Improve logging 2022-12-01 11:44:17 +00:00
NEWS 44.rc 2023-03-06 12:22:35 -03:00
README.md Rename HACKING.md to the more standard CODING_STYLE.md 2022-11-15 13:15:07 +00:00

Build Status Coverage report License

GNOME Settings

GNOME Settings is GNOME's main interface for configuration of various aspects of your desktop.

Contributing

See docs/CONTRIBUTING.md for details on the contribution process, and docs/CODING_STYLE.md for the coding style guidelines.

Reporting Bugs

Before reporting any bugs or opening feature requests, read the communication guidelines.

Bugs should be reported to the GNOME bug tracking system under the product gnome-control-center. It is available at GitLab Issues.

In the report please include the following information:

  • Operating system and version
  • For Linux, version of the C library
  • Exact error message
  • Steps to reproduce the bug
  • If the bug is a visual defect, attach a screenshot
  • If the bug is a crash, attach a backtrace if possible [see below]

How to get a backtrace

If the crash is reproducible, follow the steps to obtain a backtrace:

Install debug symbols for gnome-control-center.

Run the program in gdb [the GNU debugger] or any other debugger.

gdb gnome-control-center

Start the program.

(gdb) run

Reproduce the crash and when the program exits to (gdb) prompt, get the backtrace.

(gdb) bt full

Once you have the backtrace, copy and paste it into the 'Comments' field or attach it as a file to the bug report.

Testing Unstable Settings

It is quite easy to test and give feedback about the development version of GNOME Settings. Just access https://gitlab.gnome.org/GNOME/gnome-control-center/environments, get the latest version, download it, double-click the file, install and run.

Note that GNOME Settings Flatpak will only work if you are running the latest GNOME version in your host system.