Skip to content

Commit

Permalink
Correct cursor and icon theme dir copies (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryonakano committed Nov 2, 2021
1 parent 82b4f33 commit 37739fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Panes/AppearancePane.vala
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public class PantheonTweaks.Panes.AppearancePane : Categories.Pane {

/// TRANSLATORS: The "%s" represents the path where custom icons are installed
var icon_info = new DimLabel (_("To show custom icons here, put them in %s.").printf (
"~/.local/share/icons/<%s>".printf (_("theme-name"))
"~/.icons/<%s>".printf (_("theme-name"))
));

var cursor_label = new SummaryLabel (_("Cursor:"));
Expand All @@ -98,7 +98,7 @@ public class PantheonTweaks.Panes.AppearancePane : Categories.Pane {

/// TRANSLATORS: The "%s" represents the path where custom cursors are installed
var cursor_info = new DimLabel (_("To show custom cursors here, put them in %s.").printf (
"~/.local/share/icons/<%s>/cursors".printf (_("theme-name"))
"~/.icons/<%s>/cursors".printf (_("theme-name"))
));

var sound_label = new SummaryLabel (_("Sound:"));
Expand Down

0 comments on commit 37739fa

Please sign in to comment.