2xB

Results 55 comments of 2xB

@filipedelimabrito Should this be fixed with 3.5.1? Because I can still reproduce it in that version.

@filipedelimabrito Yes, exactly.

@filipedelimabrito I do not feel comfortable with this in that code base. The issue is probably the `toLowerCase` in https://github.com/RocketChat/Rocket.Chat.Android/blob/8497f7faabf0399f7ec3d054479f24f39d2275c6/app/src/main/java/chat/rocket/android/chatrooms/ui/ChatRoomsFragment.kt#L156 . If I just removed the `toLowerCase`, I would probably...

German is not the only language that needs this. I think Danish and Norwegian have the same issue, but I am not versed in these languages.

Notice that if one does not set xlim and ylim, the same happens, where autoscaling would be an expected outcome, as is part of issue #10497.

So this is purely an issue of setting defaults? I would then suggest to go from `clip_on=False, annotation_clip=True` to either `clip_on=True, annotation_clip=True` or `clip_on=False, annotation_clip=False`, because there is no reason...

@ImportanceOfBeingErnest There is a catch: Why does this not occur when using `plt.savefig`? ```python import matplotlib.pyplot as plt plt.xlim(0,1) plt.ylim(0,1) plt.annotate(xy=(3, 3), s='test') plt.savefig("test.png") ``` --- ![test2](https://user-images.githubusercontent.com/31772910/58546206-2b097c00-8205-11e9-9d3b-c35da2f9d516.png) ---

As of my understanding while quickly looking through the source, lib/matplotlib/artist.py uses `clip_on` in https://github.com/matplotlib/matplotlib/blob/master/lib/matplotlib/artist.py#L268, so more or less any value for clip_on other than None or False is True....

> In principle the defaults are fine: `clip_on=False` and `annotation_clip=None`. Those ensure that annotations that are defined in coordinates other than data coordinates are still shown outside the axes, which...

@ImportanceOfBeingErnest I'm not quite sure I get this. When the default for `annotation_clip` is not to show the annotation outside plot borders, should not then the default for `clip_on` be...