proper default setup and fallbacks for video on windows

This commit is contained in:
Robin Gareus 2014-12-24 01:36:46 +01:00
parent f5f89d8c7e
commit bec521c6a7
4 changed files with 20 additions and 2 deletions

View file

@ -151,7 +151,11 @@ VideoServerDialog::VideoServerDialog (Session* s)
if (Config->get_video_advanced_setup()){
vbox->pack_start (*docroot_hbox, false, false);
} else {
#ifndef PLATFORM_WINDOWS
docroot_entry.set_text(X_("/"));
#else
docroot_entry.set_text(X_("C:\\"));
#endif
listenport_spinner.set_sensitive(false);
}
vbox->pack_start (*options_box, false, true);