Skip to content
This repository has been archived by the owner on Nov 30, 2022. It is now read-only.

Commit

Permalink
Merge pull request #48 from nschloe/titlelocation
Browse files Browse the repository at this point in the history
titlelocation
  • Loading branch information
nschloe authored Jul 26, 2021
2 parents 224b35a + a277ab4 commit 383a182
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ format:

lint:
black --check .
flake8 .
pylint .
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = dufte
version = 0.2.26
version = 0.2.27
author = Nico Schlömer
author_email = [email protected]
description = Clean matplotlib plots
Expand Down
5 changes: 3 additions & 2 deletions src/dufte/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,7 @@
],
),
"axes.titlepad": 40,
"axes.titlesize": 18,
"axes.titlelocation": "left",
"axes.titlesize": 14,
}

style_bar = style.copy()
Expand All @@ -90,6 +89,8 @@
# default:
style_bar["axes.xmargin"] = mpl.rcParams["axes.xmargin"]
# style_bar["ytick.major.size"] = 10
style_bar["axes.titlelocation"] = "left"
style_bar["axes.titlesize"] = 18


def _move_min_distance(targets, min_distance):
Expand Down

0 comments on commit 383a182

Please sign in to comment.