Skip to content

Commit

Permalink
Fix CI issues
Browse files Browse the repository at this point in the history
  • Loading branch information
KyrietS committed Jan 13, 2025
1 parent 6d002b6 commit 4dec25f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions src/SettingsWindow.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#pragma once
#include "SettingsWindow.hpp"

namespace another_day
Expand Down Expand Up @@ -44,7 +43,8 @@ SettingsWindow::SettingsWindow(wxWindow* parent)
breakDurationCtrl->SetValue("5m");
gridSizer->Add(breakDurationCtrl, 1, wxALL | wxEXPAND, 1);

gridSizer->Add(new wxStaticText(durationPanel, wxID_ANY, "Session:"), 0, wxALL | wxALIGN_CENTER_VERTICAL, 5);
gridSizer->Add(new wxStaticText(durationPanel, wxID_ANY, "Session:"), 0, wxALL | wxALIGN_CENTER_VERTICAL,
5);
sessionDurationCtrl = new wxTextCtrl(durationPanel, wxID_ANY);
sessionDurationCtrl->SetToolTip("Syntax: 7s, 7m, 7h");
sessionDurationCtrl->SetValue("55m");
Expand All @@ -56,7 +56,8 @@ SettingsWindow::SettingsWindow(wxWindow* parent)
workDurationCtrl->SetValue("8h");
gridSizer->Add(workDurationCtrl, 1, wxALL | wxEXPAND, 1);

gridSizer->Add(new wxStaticText(durationPanel, wxID_ANY, "Postpone:"), 0, wxALL | wxALIGN_CENTER_VERTICAL, 5);
gridSizer->Add(new wxStaticText(durationPanel, wxID_ANY, "Postpone:"), 0, wxALL | wxALIGN_CENTER_VERTICAL,
5);
postponekDurationCtrl = new wxTextCtrl(durationPanel, wxID_ANY);
postponekDurationCtrl->SetToolTip("Syntax: 7s, 7m, 7h");
gridSizer->Add(postponekDurationCtrl, 1, wxALL | wxEXPAND, 1);
Expand Down
2 changes: 1 addition & 1 deletion src/pch.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

#include <wx/config.h>
#include <wx/dcbuffer.h>
#include <wx/notebook.h>
#include <wx/sound.h>
#include <wx/taskbar.h>
#include <wx/wxprec.h>
#include <wx/notebook.h>

#ifndef WX_PRECOMP
#include <wx/wx.h>
Expand Down

0 comments on commit 4dec25f

Please sign in to comment.