Skip to content

Commit

Permalink
fix: monitor use u64
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrinux committed Sep 7, 2023
1 parent 93d4933 commit 12afa38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/data/regular.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ pub enum Transforms {
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct Monitor {
/// The monitor id
pub id: i16,
pub id: u64,
/// The monitor's name
pub name: String,
/// The monitor's description
Expand Down Expand Up @@ -217,7 +217,7 @@ pub struct Client {
#[serde(rename = "fullscreenMode")]
pub fullscreen_mode: i8,
/// The monitor the window is on
pub monitor: i16,
pub monitor: u64,
/// The initial window class
#[serde(rename = "initialClass")]
pub initial_class: String,
Expand Down

0 comments on commit 12afa38

Please sign in to comment.