Robert Ancell
e90ed2df8a
network: Stop NetDeviceEthernet deriving from NetDeviceSimple
...
It overrode everything anyway.
2019-11-06 10:16:39 +13:00
Robert Ancell
9327a5f4d1
network: Remove unused function
2019-11-06 10:16:20 +13:00
Robert Ancell
d68cb14837
network: Remove unused virtual method
2019-11-06 10:16:20 +13:00
Robert Ancell
0c92c7b461
network: Replace g_object_new with constructors
2019-11-06 10:16:20 +13:00
Robert Ancell
0b481bfb83
network: Remove if statement that is always true
2019-11-06 10:16:20 +13:00
Robert Ancell
6c473c2e14
network: Remove unused net_device_new function
2019-11-06 10:16:20 +13:00
Robert Ancell
6ab75da5c6
network: Use g_clear_pointer
2019-11-06 10:16:20 +13:00
Robert Ancell
8f722a31de
network: Fix missing GtkWidget cast
2019-11-06 10:16:18 +13:00
Bastien Nocera
2007a5b240
info: Use new helper to fetch GL/GLES renderers
2019-11-06 09:27:10 +13:00
Bastien Nocera
5f6d5b77ac
info: Add helper to print the GL/GLES renderer
...
This is a simplification of code that used to be in
gnome-session-check-accelerated.
2019-11-06 09:27:10 +13:00
Bastien Nocera
2e17bc7516
info: Fix Graphics text with NVidia drivers or >2 GPUs
...
Use switcheroo-control to get the list of GPUs. For each one of the GPUs
listed, switcheroo-control will give us environment variable we should
set before running our helper to be able to get the renderer from it.
This means that it will finally work when one of the GPUs is driven
with the NVidia drivers, as switcheroo-control sets the correct envvars
for this driver, and that we also support more than 2 GPUs.
Closes: https://gitlab.gnome.org/GNOME/gnome-control-center/merge_requests/601
2019-11-06 09:27:10 +13:00
Bastien Nocera
212e406d7f
info: Remove "x11 or wayland" check
...
This check was added when Wayland support was added, so we wouldn't
try to run an X11-only helper. The helper now supports Wayland, and
gnome-control-center (and GNOME) only supports X11 and Wayland. In fact,
we always want to run that code.
2019-11-05 16:38:49 +01:00
Bastien Nocera
3e39feb046
info: No need to put TM and (R) as exponents
...
The font glyphs already put those characters in the upper right of where
the character should be.
2019-11-05 16:38:49 +01:00
Daniel Mustieles
1ea019d7ef
Updated Spanish translation
2019-11-05 15:34:24 +01:00
Robert Ancell
cd377768f5
Avoid warnings where G_LOG_DOMAIN is overriden
...
Undefine the value before overriding it to avoid the following warnings:
../panels/background/cc-background-chooser.c:22: warning: "G_LOG_DOMAIN" redefined
2019-11-04 22:12:05 +00:00
Bastien Nocera
e121dbcebc
info: Add windowing system field
...
This is supposed to give information that's not easily accessible to an
end user otherwise. It's supposed to give information "at a glance" and
should be removed when X11 is removed.
2019-11-04 18:59:27 -03:00
Danial Behzadi
dba1e59e95
Update Persian translation
2019-11-03 12:32:50 +00:00
Diego Escalante Urrelo
3a1d6295cd
power: Stop the brightness slider from jumping
...
The GtkScale widget for screen brightness has a tendency to jump around
because GtkRange defaults to NOT rounding values (round_digits = -1).
This means that the widget is constantly set with values that have
decimals (say 10.3) which it then tries to correct to fit the step size.
The solution for this particular UI quirk is to make sure to set
round-digits to 0, as that will force GtkRange to provide GtkScale with
rounded-down numbers. See gtkrange.c.
Fixes: https://gitlab.gnome.org/GNOME/gnome-settings-daemon/issues/405
2019-10-31 20:05:12 +00:00
Robert Ancell
4376140183
common: Make the privileged group configurable (i.e. wheel vs sudo)
...
Fixes #559
2019-10-31 03:34:28 +00:00
Robert Ancell
d61d13d4e3
network: Hide edit connection buttons if nm-connection-editor not installed
2019-10-31 01:46:19 +00:00
Iain Lane
b5ff6d1b21
cc-search-locations: Use g_new0
instead of the slice allocator
2019-10-30 16:07:18 +00:00
Iain Lane
2c8cce0dcc
search: Factor out creation of Place
objects.
...
If we always construct these objects via a constructor, then we can help
to avoid bugs like that fixed by
2fb0ff250b
.
2019-10-30 16:07:14 +00:00
Robert Ancell
ff342dfbc7
background: Use g_autoptr to remove an explicit unref
2019-10-30 12:10:29 +00:00
Daniel Mustieles
1ac9a954a7
Updated Spanish translation
2019-10-29 15:32:56 +01:00
Robert Ancell
9ee4a4d34c
removable-media: Use GTK widget types
2019-10-29 10:21:16 +13:00
Robert Ancell
72419d9f75
removable-media: Rename widgets
...
Drop media_ prefix - all widgets are related to media.
Replace combo box names with chooser - they're all GtkAppChooserButton widgets.
2019-10-29 10:21:16 +13:00
Robert Ancell
3dbfce6a04
removable-media: Replace unused includes
2019-10-29 10:21:16 +13:00
Robert Ancell
6a4c7847e4
removable-media: Replace custom function with standard g_strv_contains
...
It was added to GLib 2.44
2019-10-29 10:21:16 +13:00
Robert Ancell
aa59c003fe
removable-media: Move signals into GtkBuilder and connect swapped
2019-10-29 10:21:16 +13:00
Robert Ancell
84b6257d36
removable-media: Move other combo box definition into GtkBuilder file
2019-10-29 10:21:16 +13:00
Robert Ancell
2546d02b3d
removable-media: Drop unused widget IDs
2019-10-29 10:21:16 +13:00
Mohammed Sadiq
8821a37ed2
info: Implement new design
...
This is based on the design at
https://teams.pages.gitlab.gnome.org/Design/web-experiments/settings/about
2019-10-29 10:13:23 +13:00
Mohammed Sadiq
8950cd5ec2
common: Add cc-list-row
2019-10-29 09:48:08 +13:00
Robert Ancell
8a36c515e9
info-overview: Drop private structure
...
This class is not extended, so doesn't need it.
2019-10-29 09:47:41 +13:00
Alexandru Năstase
337e1efda0
info: Add 'hostname' keyword to info overview
2019-10-28 20:16:24 +00:00
Robert Ancell
4afbeff6ed
network: Drop broken patches to import code from network-manager-applet
...
They are disabled, and aren't going to work due to other changes we have landed.
2019-10-24 08:02:43 +00:00
Robert Ancell
a1439b32b1
network: Remove unused virtual method
2019-10-22 20:11:45 +00:00
Robert Ancell
62af171d8b
network: Remove net_object_edit virtual method
...
It didn't need to be virtual and was only used in two cases
2019-10-22 20:11:45 +00:00
Robert Ancell
926063acb3
network: Remove unused GObject property
2019-10-22 20:11:45 +00:00
Robert Ancell
0e10d2cab4
network: Drop class method for signals
...
These weren't used and contained a copy/paste error.
2019-10-22 20:11:45 +00:00
Robert Ancell
87b98346df
network: Remove virtual method
...
Nothing ever overrode it; just convert to a normal method.
2019-10-22 20:11:45 +00:00
Robert Ancell
4dbea87109
network: Remove unused includes
2019-10-22 20:11:45 +00:00
Robert Ancell
7f410ee1c6
network: Remove helper functions
...
They're not complex enough or used in enough places to warrant keeping.
They can be better refactored in the classes that use them.
2019-10-22 20:11:45 +00:00
Robert Ancell
75b4e5e061
network: Simplify helper function
2019-10-22 20:11:45 +00:00
Robert Ancell
f03ae7ff93
network: Move common code UI into each widget using it
...
It was only used twice and better managed in the actual widgets.
2019-10-22 20:11:45 +00:00
Robert Ancell
9b1226aea5
network: Remove helper function with minimal value
...
This can be more easily optimised away in the modules that use it.
2019-10-22 20:11:45 +00:00
Robert Ancell
96585c1542
network: Remove unused hotspot connected label
2019-10-22 20:11:45 +00:00
Robert Ancell
4100c69d9c
network: Move panel properties into GtkBuilder files
2019-10-22 20:11:45 +00:00
Robert Ancell
708b1fdaf7
network: Use self variable name consistently
2019-10-22 20:11:45 +00:00
Robert Ancell
8b6e3fb736
network: Store widgets inside objects
...
This is a step towards replacing GtkBuilder with GtkTemplate
2019-10-22 20:11:45 +00:00