Skip to content

Commit

Permalink
Fixing theme labels.
Browse files Browse the repository at this point in the history
  • Loading branch information
phase1geo committed May 18, 2021
1 parent 4f4c79d commit 9301433
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/MapInspector.vala
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ public class MapInspector : Box {
if( theme.temporary ) {
return( theme.label + " (" + _( "Unsaved" ) + ")" );
}
return( name );
return( theme.label );
}

/* Makes sure that only the given theme is selected in the UI */
Expand Down
2 changes: 1 addition & 1 deletion src/themes/ThemeDefault.vala
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class ThemeDefault : Theme {
public ThemeDefault() {

name = "default";
label = _( "Default" );
label = _( "Light" );
custom = false;

/* Generate the non-link colors */
Expand Down

0 comments on commit 9301433

Please sign in to comment.