From 488ab101e9f0951e085f634712433eb5ff70934e Mon Sep 17 00:00:00 2001 From: Moritz Lipp Date: Sat, 21 Apr 2012 00:00:03 +0200 Subject: [PATCH] Set default adjust mode to none --- config.c | 2 +- document.c | 9 +++++---- zathura.c | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/config.c b/config.c index 5f6079c..0f9d759 100644 --- a/config.c +++ b/config.c @@ -116,7 +116,7 @@ config_load_default(zathura_t* zathura) girara_setting_add(gsession, "highlight-transparency", &float_value, FLOAT, false, _("Transparency for highlighting"), NULL, NULL); bool_value = true; girara_setting_add(gsession, "render-loading", &bool_value, BOOLEAN, false, _("Render 'Loading ...'"), NULL, NULL); - girara_setting_add(gsession, "adjust-open", "best-fit", STRING, false, _("Adjust to when opening file"), NULL, NULL); + girara_setting_add(gsession, "adjust-open", "none", STRING, false, _("Adjust to when opening file"), NULL, NULL); bool_value = false; girara_setting_add(gsession, "show-hidden", &bool_value, BOOLEAN, false, _("Show hidden files and directories"), NULL, NULL); bool_value = true; diff --git a/document.c b/document.c index bf35c61..474d4b5 100644 --- a/document.c +++ b/document.c @@ -114,10 +114,11 @@ zathura_document_open(zathura_plugin_manager_t* plugin_manager, const char* document = g_malloc0(sizeof(zathura_document_t)); - document->file_path = real_path; - document->password = password; - document->scale = 1.0; - document->plugin = plugin; + document->file_path = real_path; + document->password = password; + document->scale = 1.0; + document->plugin = plugin; + document->adjust_mode = ZATHURA_ADJUST_NONE; /* open document */ if (plugin->functions.document_open == NULL) { diff --git a/zathura.c b/zathura.c index 0ef9486..698b93f 100644 --- a/zathura.c +++ b/zathura.c @@ -518,7 +518,7 @@ document_open(zathura_t* zathura, const char* path, const char* password) /* apply open adjustment */ char* adjust_open = "best-fit"; - zathura_document_set_adjust_mode(document, ZATHURA_ADJUST_BESTFIT); + zathura_document_set_adjust_mode(document, ZATHURA_ADJUST_NONE); if (girara_setting_get(zathura->ui.session, "adjust-open", &(adjust_open)) == true) { if (g_strcmp0(adjust_open, "best-fit") == 0) { zathura_document_set_adjust_mode(document, ZATHURA_ADJUST_BESTFIT);