mirror of
https://github.com/servo/servo.git
synced 2025-07-22 23:03:42 +01:00
Disable tinyfiledialogs on non-OS X and Linux platforms.
This commit is contained in:
parent
7bd2381518
commit
d09a497aa5
3 changed files with 11 additions and 3 deletions
|
@ -41,6 +41,7 @@ use std::sync::mpsc::Sender;
|
|||
use std::sync::{Arc, RwLock};
|
||||
use time;
|
||||
use time::Tm;
|
||||
#[cfg(any(target_os = "macos", target_os = "linux"))]
|
||||
use tinyfiledialogs;
|
||||
use url::Url;
|
||||
use util::resource_files::resources_dir_path;
|
||||
|
@ -702,10 +703,16 @@ pub trait UIProvider {
|
|||
}
|
||||
|
||||
impl UIProvider for TFDProvider {
|
||||
#[cfg(any(target_os = "macos", target_os = "linux"))]
|
||||
fn input_username_and_password(&self) -> (Option<String>, Option<String>) {
|
||||
(tinyfiledialogs::input_box("Enter username", "Username:", ""),
|
||||
tinyfiledialogs::input_box("Enter password", "Password:", ""))
|
||||
}
|
||||
|
||||
#[cfg(not(any(target_os = "macos", target_os = "linux")))]
|
||||
fn input_username_and_password(&self) -> (Option<String>, Option<String>) {
|
||||
(None, None)
|
||||
}
|
||||
}
|
||||
|
||||
struct TFDProvider;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue