Branch: refs/heads/master Author: Enrico Tröger enrico.troeger@uvena.de Committer: Enrico Tröger enrico.troeger@uvena.de Date: Fri, 13 Oct 2023 14:26:58 UTC Commit: f2847ecec34eae45f964eca3db6faaf07f1557d5 https://github.com/geany/geany-plugins/commit/f2847ecec34eae45f964eca3db6faa...
Log Message: ----------- GitChangebar: disable Scintilla's Change History in diff tooltip
If the "Change history" feature is enabled in Geany, it might lead to styling issues in the tooltip displaying the diff of the current hunk. So always disable this feature for the tooltip where it is not needed.
Modified Paths: -------------- git-changebar/src/gcb-plugin.c
Modified: git-changebar/src/gcb-plugin.c 1 lines changed, 1 insertions(+), 0 deletions(-) =================================================================== @@ -837,6 +837,7 @@ get_widget_for_buf_range (GeanyDocument *doc, /* hide stuff we don't wanna see */ scintilla_send_message (sci, SCI_SETHSCROLLBAR, 0, 0); scintilla_send_message (sci, SCI_SETVSCROLLBAR, 0, 0); + scintilla_send_message (sci, SCI_SETCHANGEHISTORY, SC_CHANGE_HISTORY_DISABLED, 0); for (i = 0; i < SC_MAX_MARGIN; i++) { scintilla_send_message (sci, SCI_SETMARGINWIDTHN, i, 0); }
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).