Skip to content

Commit

Permalink
fix #1153
Browse files Browse the repository at this point in the history
  • Loading branch information
alainm23 committed Mar 19, 2024
1 parent 7f81d24 commit 9e8ee0e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Dialogs/Preferences/PreferencesWindow.vala
Original file line number Diff line number Diff line change
Expand Up @@ -1168,7 +1168,7 @@ public class Dialogs.Preferences.PreferencesWindow : Adw.PreferencesWindow {
oauth_open_url = oauth_open_url.printf (Constants.TODOIST_CLIENT_ID, Constants.TODOIST_SCOPE, state);

WebKit.WebView webview = new WebKit.WebView ();
webview.zoom_level = 0.75;
webview.zoom_level = 0.85;
webview.vexpand = true;
webview.hexpand = true;

Expand Down
4 changes: 2 additions & 2 deletions src/Views/Scheduled/ScheduledDay.vala
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ public class Views.Scheduled.ScheduledDay : Gtk.ListBoxRow {

items = new Gee.HashMap <string, Layouts.ItemRow> ();

var day_label = new Gtk.Label (date.format ("%a").up (1) + date.format ("%a").substring (1)) {
var day_label = new Gtk.Label (date.get_day_of_month ().to_string ()) {
halign = Gtk.Align.START
};
day_label.add_css_class ("font-bold");

var date_format_label = new Gtk.Label (
Util.get_default ().get_default_date_format_from_date (date)
date.format ("%a")
) {
halign = Gtk.Align.START
};
Expand Down

0 comments on commit 9e8ee0e

Please sign in to comment.