Skip to content

Commit

Permalink
v0.8.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Croydon committed Oct 18, 2017
1 parent ec49014 commit 92ca196
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
build
webextension/web-ext-artifacts
web-ext-artifacts/
*~
*.DS_Store
*.xpi
Expand Down
7 changes: 7 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

### v0.8.5.2, 2017-10-04
* fixed: workaround problem that sidebar position (left, right) is not set correctly (#129)


***


### v0.8.5.1, 2017-10-03
* fixed: workaround problem that sidebar width is not set correctly (#129)

Expand Down
2 changes: 1 addition & 1 deletion lib/verticaltabs.js
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ var VerticalTabsReloaded = class VerticalTabsReloaded
case "right":
this.webExtPreferences = newValue;
let browserbox = this.document.getElementById("browser");
if (browserbox.dir != "reverse")
if (this.preferences("right"))
{
browserbox.dir = "reverse";
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"icon": "resource://verticaltabsreloaded-at-go-dev-dot-de/webextension/data/icon.png",
"author": "Croydon",
"license": "MPL-2.0",
"version": "0.8.5.1",
"version": "0.8.5.2",
"permissions":
{
"private-browsing": true,
Expand Down
1 change: 1 addition & 0 deletions webextension/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,7 @@ setTimeout(() =>
setTimeout(() =>
{
sdk_send_changed_setting("width");
sdk_send_changed_setting("right");
}, 500);

}, 100);
Expand Down

0 comments on commit 92ca196

Please sign in to comment.