Skip to content
This repository was archived by the owner on Feb 21, 2025. It is now read-only.

scale_factor and desc #488

Merged
merged 1 commit into from
Dec 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/integrations/integr_chrome.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1199,7 +1199,7 @@ const CHROME_INTEGRATION_SCHEMA: &str = r#"
fields:
chrome_path:
f_type: string_long
f_desc: "Path to Google Chrome or Chromium binary. If empty, it searches for Google Chrome in your system"
f_desc: "Path to Google Chrome, Chromium or Edge binary. If empty, it searches for binary in your system"
idle_browser_timeout:
f_type: string_short
f_desc: "Idle timeout for the browser in seconds."
Expand All @@ -1217,7 +1217,7 @@ fields:
f_type: string_short
f_desc: "Height of the browser window."
f_extra: true
window_scale:
scale_factor:
f_type: string_short
f_desc: "Scale factor of the browser window."
f_extra: true
Expand All @@ -1229,7 +1229,7 @@ fields:
f_type: string_short
f_desc: "Height of the browser window in mobile mode."
f_extra: true
mobile_window_scale:
mobile_scale_factor:
f_type: string_short
f_desc: "Scale factor of the browser window in mobile mode."
f_extra: true
Expand All @@ -1241,7 +1241,7 @@ fields:
f_type: string_short
f_desc: "Height of the browser window in tablet mode."
f_extra: true
tablet_window_scale:
tablet_scale_factor:
f_type: string_short
f_desc: "Scale factor of the browser window in tablet mode."
f_extra: true
Expand Down
Loading