Skip to content

Commit

Permalink
*
Browse files Browse the repository at this point in the history
  • Loading branch information
alainm23 committed Jun 3, 2024
1 parent b732366 commit 6dcf764
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/Widgets/Markdown/Color.vala
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ namespace Color {
Gtk.rgb_to_hsv (rgb.r, rgb.g, rgb.b, out hsl.h, out s, out v);
hsl.l = v - v * s / 2;
float m = float.min (hsl.l, 1 - hsl.l);
hsl.s = (m != 0) ? (v-hsl.l) / m : 0;
hsl.s = (m != 0) ? (v - hsl.l) / m : 0;
return hsl;
}

Expand Down
2 changes: 1 addition & 1 deletion src/Dialogs/Preferences/PreferencesWindow.vala
Original file line number Diff line number Diff line change
Expand Up @@ -1037,7 +1037,7 @@ public class Dialogs.Preferences.PreferencesWindow : Adw.PreferencesDialog {
}

private Adw.NavigationPage get_caldav_view () {
var settings_header = new Dialogs.Preferences.SettingsHeader (_("CalDAV"));
var settings_header = new Dialogs.Preferences.SettingsHeader (_("Nextcloud"));

var username_label = new Gtk.Label (Services.Settings.get_default ().settings.get_string ("caldav-user-displayname")) {
margin_top = 12,
Expand Down

0 comments on commit 6dcf764

Please sign in to comment.