Skip to content

Commit

Permalink
I forgot to run cargo fmt -_-
Browse files Browse the repository at this point in the history
Signed-off-by: Jamie Ridding <[email protected]>
  • Loading branch information
Themayu committed Aug 19, 2024
1 parent 9f9d1a7 commit 937353e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -238,10 +238,10 @@ pub use wkwebview::{PrintMargin, PrintOptions};
#[cfg(target_os = "windows")]
pub(crate) mod webview2;
#[cfg(target_os = "windows")]
use self::webview2::*;
#[cfg(target_os = "windows")]
pub use self::webview2::ScrollBarStyle;
#[cfg(target_os = "windows")]
use self::webview2::*;
#[cfg(target_os = "windows")]
use webview2_com::Microsoft::Web::WebView2::Win32::ICoreWebView2Controller;

use std::{borrow::Cow, path::PathBuf, rc::Rc};
Expand Down Expand Up @@ -1147,9 +1147,9 @@ pub trait WebViewBuilderExtWindows {

/// Specifies the native scrollbar style to use with webview2.
/// CSS styles that modify the scrollbar are applied on top of the native appearance configured here.
///
///
/// Defaults to [`ScrollbarStyle::Default`] which is the browser default used by Microsoft Edge.
///
///
/// Requires WebView2 Runtime version 125.0.2535.41 or higher, does nothing on older versions,
/// see https://learn.microsoft.com/en-us/microsoft-edge/webview2/release-notes/?tabs=dotnetcsharp#10253541
fn with_scroll_bar_style(self, style: ScrollBarStyle) -> Self;
Expand Down

0 comments on commit 937353e

Please sign in to comment.