Skip to content

Commit

Permalink
Merge pull request #167 from mathstuf/fix-upgrading-docs
Browse files Browse the repository at this point in the history
docs: fix replacement for toggle_zoom_type
  • Loading branch information
mathstuf committed Oct 12, 2015
2 parents dad7546 + b4c1c53 commit 849ec9b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -689,7 +689,7 @@ variables are treated as strings.
* `zoom_step` (double) (default: 0.1)
- The amount to step by default with the `zoom in` and `zoom out` commands.
Must be greater than 0.
* `zoom_text_only` (boolean) (default: 1)
* `zoom_text_only` (boolean) (default: 0)
- If non-zero, only text will be zoomed on a page.
* `caret_browsing` (boolean) (default: 0)
- If non-zero, pages may be navigated using the arrows to move a cursor
Expand Down
2 changes: 1 addition & 1 deletion UPGRADING.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ major exception here).
* `toggle_zoom_type`
- *Change*: Removed.
- *Rationale*: Unnecessary command.
- *Porting*: Use `toggle zoom_type`.
- *Porting*: Use `toggle zoom_text_only`.
* `zoom_in`
- *Change*: Removed
- *Rationale*: Consolidated into the new `zoom` command.
Expand Down
1 change: 1 addition & 0 deletions src/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ default_config[] = {
"set shell_cmd /bin/sh -c",
"set maintain_history 1", /* Set here since the WebKit default is 1, but there's no way to get the current value. */
"set forward_keys 1", /* Forward keys by default so that webpages work as expected without a config. */
"set zoom_text_only 0", /* Zoom all content by default; text-only is not as useful. */
NULL
};

Expand Down

0 comments on commit 849ec9b

Please sign in to comment.