Skip to content

Commit

Permalink
Update screenshots
Browse files Browse the repository at this point in the history
  • Loading branch information
edfloreshz committed Jul 11, 2024
1 parent 8152686 commit 01c72b3
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 4 deletions.
Binary file modified res/screenshots/window-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified res/screenshots/window-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/content.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ use cosmic::iced::alignment::{Horizontal, Vertical};
use cosmic::iced::{Alignment, Length, Subscription};
use cosmic::iced_widget::row;
use cosmic::{theme, widget, Apply, Element};
use slotmap::{DefaultKey, SecondaryMap, SlotMap};
use tasks_core::models::list::List;
use tasks_core::models::status::Status;
use tasks_core::models::task::Task;
use slotmap::{DefaultKey, SecondaryMap, SlotMap};

use crate::fl;

Expand Down
2 changes: 1 addition & 1 deletion src/details.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ use cosmic::iced_widget::row;
use cosmic::widget::segmented_button;
use cosmic::widget::segmented_button::Entity;
use cosmic::{theme, widget, Element};
use slotmap::{DefaultKey, SecondaryMap, SlotMap};
use tasks_core::models::priority::Priority;
use tasks_core::models::status::Status;
use tasks_core::models::task::Task;
use slotmap::{DefaultKey, SecondaryMap, SlotMap};

use crate::fl;

Expand Down
1 change: 0 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ mod content;
mod details;
mod todo;

#[rustfmt::skip]
pub fn main() -> Result<(), Box<dyn std::error::Error>> {
let (settings, flags) = app::settings::init();
cosmic::app::run::<Tasks>(settings, flags)?;
Expand Down
2 changes: 1 addition & 1 deletion src/todo.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
use crate::app::markdown::Markdown;
use std::error::Error;
use tasks_core::models::list::List;
use tasks_core::models::task::Task;
use tasks_core::service::TaskService;
use std::error::Error;

pub async fn update_list(list: List, service: TaskService) -> Result<(), Box<dyn Error>> {
if let Some(mut service) = service.get_service() {
Expand Down

0 comments on commit 01c72b3

Please sign in to comment.