A fork of Gnome-control-center with some tweaks
Find a file
Peter Hutterer a82b975367 wacom: Only write a generic pen to the keyfile when it's previously unseen
When we bring a generic pen (serial 0) into proximity, the tool is initialized
as "generic" and mapped to the current tablet. This is then written out into
the keyfile, so we end up with something like:

[056a:00d1]
Styli=generic;

On the next g-c-c start the generic pen is pre-loaded from the keyfile but not
yet associated with the tablet. When the pen gets into proximity the
association was handled like a completely new pen, thus triggering a key file
entry again. Eventually, our styli list looked like this:

[056a:00d1]
Styli=generic;generic;generic;generic;generic;generic;

Fix this by remembering whether we freshly initialized the tool or whether it
was already known. Since we can only have one generic tool per tablet (because
we wouldn't notice the difference between two physical tools) we just skip the
write of the keyfile.

Fixes #313
2018-12-18 20:46:02 +00:00
.gitlab/issue_templates project: Add issue templates 2018-05-02 21:02:13 -03:00
build-aux ci: Add flatpak-devel to CI images 2018-12-11 12:06:27 -02:00
data/icons icon: update icon assets for Initiative: https://gitlab.gnome.org/GNOME/Initiatives/issues/2 2018-09-12 21:30:52 +00:00
docs project: Document maintainers and workflow 2018-07-16 20:50:12 -03:00
gettext/its build: Fix translation context missing from keyboard entries 2018-01-24 20:43:34 +01:00
man project: Update meson files 2018-05-03 00:45:29 -03:00
panels wacom: Only write a generic pen to the keyfile when it's previously unseen 2018-12-18 20:46:02 +00:00
po Updated Slovenian translation 2018-12-08 22:00:05 +01:00
search-provider project: Update meson files 2018-05-03 00:45:29 -03:00
shell main: Init libhandy 2018-11-26 15:36:34 +01:00
subprojects build: Add libhandy-0.0 dependency 2018-11-26 15:36:34 +01:00
tests tests: Disable ATK as it is currently creating issues 2018-12-07 15:49:13 +01:00
.gitignore project: Update gitignore 2018-05-12 20:56:04 -03:00
.gitlab-ci.yml ci: Prevent stop_review from running on image builds 2018-12-11 11:21:21 -02:00
.gitmodules build: Add libhandy-0.0 dependency 2018-11-26 15:36:34 +01:00
COPYING build: Update COPYING with new mailing address 2012-08-22 15:33:18 +01:00
gnome-control-center.doap project: Add Benjamin as the maintainer of Display 2018-10-04 11:12:02 -03:00
meson.build build: Depend on gsettings-desktop-schemas >= 3.31.0 2018-12-11 13:25:50 +01:00
meson_options.txt window: Warn about development builds 2018-05-14 18:24:03 -03:00
NEWS 3.31.2 2018-11-12 23:43:14 -02:00
README.md Update README.md 2018-10-24 13:03:26 +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/HACKING.md for the coding style guidelines.

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.

Reporting Bugs

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.