Age | Commit message (Collapse) | Author | Files | Lines |
|
Reported by translators
|
|
Replace plain labels with frames as those properly group and label
their contents for assistive technologies.
There are no visual changes.
|
|
Accessibility: Add support for high contrast themes
|
|
It adds two menu item separators, before and after of Print menu item.
Test:
Run mate-appearance-properties
Select Interface tab
Clic on File menu item
|
|
marco-window-manager.c:408:17: warning: Value stored to 'i' is never read
i = 0;
^ ~
theme-installer.c:813:3: warning: Value stored to 'filename' is never read
filename = old_folder;
^ ~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
"x-office-document" and "x-office-spreadsheet" are more common MIME
icon names than their counterparts without the "x-" prefix.
The latter seems not to even be available in "MATE" icon theme, but
only in "Faenza" icon theme. The "x-"-prefixed variant on the other
hand is available even in theme providing the unprefixed ones, meaning
it will sill work with these.
On my machine with not many themes, but only standard-ish ones:
```console
$ find /usr/share/icons/ -name office-document.* | wc -l
8
$ find /usr/share/icons/ -name x-office-document.* | wc -l
54
```
Thus, using the prefixed variant seems like a better choice.
|
|
|
|
|
|
|
|
Prevent runtime failture on g_icon_to_string in fill_combo_box by catching the NULL case
See https://github.com/mate-desktop/mate-control-center/pull/398#issuecomment-445047978
Signed-off-by: Zhang Xianwei <[email protected]>
|
|
Fix https://github.com/mate-desktop/mate-control-center/issues/291
Signed-off-by: Zhang Xianwei <[email protected]>
|
|
|
|
Provided additional "mic-mute" key binding.
For reference: https://github.com/mate-desktop/mate-settings-daemon/pull/253
Signed-off-by: Zhang Xianwei <[email protected]>
|
|
Provided three new key bindings to volume control:
"volume-mute-quiet"
"volume-down-quiet"
"volume-up-quiet"
For reference: https://github.com/mate-desktop/mate-settings-daemon/pull/252
Signed-off-by: Zhang Xianwei <[email protected]>
|
|
|
|
|
|
Closes https://github.com/mate-desktop/mate-control-center/issues/390
|
|
|
|
First show UI with avatar-default, after user loaded, show user image.
|
|
|
|
Provided additional "control-center" key binding.
For reference: https://github.com/mate-desktop/mate-settings-daemon/pull/244
Signed-off-by: Zhang Xianwei <[email protected]>
|
|
|
|
|
|
- add e_image_chooser_set_scaleable(), to allow ImageChooser to
change its size according to the size of the picture.
- add e_image_chooser_new_with_size(), to create a fixed size
EImageChooser.
|
|
- If get icon from AccountsService failed, fallback to use ~/.face file.
- If not setup user icon file, use "avatar-default" icon as default image to show.
- Check dependencies of accountsservice, default is enable when accountsservice dependency exists. Added by raveit65 <[email protected]>.
|
|
Defaults to ON so as not to change expected behavior until user changes it.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This makes it possible to fix visual glitches in themes
|
|
The MATE cursor theme does not have an 18px cursor size, so having
a 18px as the default setting does not make sense. Using 24px looks
better in modern displays and allows for proper HiDPI scaling.
|
|
|
|
|
|
Currently if a user changes the DPI, there is no way to reset it back to
the auto-detected value from Xserver (which we store as 0 in gsettings).
Adding this toggle solves that issue.
I also removed a deprecated
[GtkHandleBox](https://developer.gnome.org/gtk3/stable/GtkHandleBox.html)
and all its associated code.
|
|
fixes https://github.com/mate-desktop/mate-control-center/issues/334
Signed-off-by: Zhang Xianwei <[email protected]>
|
|
|
|
|
|
filetype is not used in mate_theme_install_real, remove it.
Signed-off-by: Zhang Xianwei <[email protected]>
|
|
When ~/.themes/theme-name is existed, reinstalling the same theme will
be failed. Add tips when reinstall a existed theme to fix it.
Signed-off-by: Zhang Xianwei <[email protected]>
|
|
Automatically scales up the font DPI when loading the GtkSpinner and
down-scale when saving it. The result is that the user gets the correct
DPI showing in the Appearance > Fonts > Details app, while gsettings
stores the down-scaled DPI.
|