Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions js/activity.js
Original file line number Diff line number Diff line change
Expand Up @@ -1514,6 +1514,7 @@ class Activity {
else if (ele.label === "Disable horizontal scrolling")
ele.display = true;
})
activity.textMsg(_("Horizontal scrolling enabled."),3000);
} else {
enableHorizScrollIcon.style.display = "block";
disableHorizScrollIcon.style.display = "none";
Expand All @@ -1524,6 +1525,7 @@ class Activity {
else if (ele.label === "Disable horizontal scrolling")
ele.display = false;
})
activity.textMsg(_("Horizontal scrolling disabled."),3000);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this one too

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

}
};

Expand Down
Loading