Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Pinta.Effects/Effects/FeatherEffect.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace Pinta.Effects;

public sealed class FeatherEffect : BaseEffect
{
public override string Icon => Resources.Icons.EffectsDefault;
public override string Icon => Resources.Icons.EffectsObjectFeatherObject;

// Takes two passes, so must be multithreaded internally
public sealed override bool IsTileable => false;
Expand Down
2 changes: 2 additions & 0 deletions Pinta.Resources/Icons.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ public static class Icons
{
public const string AddinsManage = "addins-manage";

public const string AdjustmentsDefault = "adjustments-default-symbolic";
public const string AdjustmentsAutoLevel = "adjustments-autolevel";
public const string AdjustmentsBlackAndWhite = "adjustments-blackandwhite";
public const string AdjustmentsBrightnessContrast = "adjustments-brightnesscontrast-symbolic";
Expand Down Expand Up @@ -138,6 +139,7 @@ public static class Icons
public const string EffectsDistortPolarInversion = "effects-distort-polarinversion";
public const string EffectsDistortTile = "effects-distort-tile";
public const string EffectsDistortTwist = "effects-distort-twist";
public const string EffectsObjectFeatherObject = "effects-object-featherobject-symbolic";
public const string EffectsNoiseAddNoise = "effects-noise-addnoise";
public const string EffectsNoiseMedian = "effects-noise-median";
public const string EffectsNoiseReduceNoise = "effects-noise-reducenoise";
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 9 additions & 4 deletions Pinta.Resources/icons/hicolor/scalable/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,18 @@

Some icons are from the following sets:

### Google Material Icons
### Google Material Icons:
https://github.com/google/material-design-icons

Provided under the Apache License Version 2.0.
Provided under the Apache License Version 2.0

### Microsoft Fluent UI System Icons
### Microsoft Fluent UI System Icons:
https://github.com/microsoft/fluentui-system-icons

Provided available under the MIT License.
Provided available under the MIT License

### GIMP icons:
https://gitlab.gnome.org/GNOME/gimp-data

Provided available under the Creative Commons Attribution 4.0 International license

2 changes: 1 addition & 1 deletion Pinta/MainWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ private void CreateMainToolBar ()

header_bar.PackEnd (new Gtk.MenuButton () {
MenuModel = PintaCore.Chrome.AdjustmentsMenu,
IconName = Resources.Icons.AdjustmentsBrightnessContrast,
IconName = Resources.Icons.AdjustmentsDefault,
TooltipText = Translations.GetString ("Adjustments"),
});

Expand Down
Loading