[geany/geany-plugins] 5309ec: addons: fixed missing SCI_SETMOUSEDWELLTIME.
LarsDW223
git-noreply at xxxxx
Tue Jan 16 20:04:03 UTC 2018
Branch: refs/heads/master
Author: LarsDW223 <lars_paulsen at web.de>
Committer: LarsDW223 <lars_paulsen at web.de>
Date: Tue, 16 Jan 2018 20:04:03 UTC
Commit: 5309ece1c53509f5a9fff03f8f9dec23835efce2
https://github.com/geany/geany-plugins/commit/5309ece1c53509f5a9fff03f8f9dec23835efce2
Log Message:
-----------
addons: fixed missing SCI_SETMOUSEDWELLTIME.
Modified Paths:
--------------
addons/src/ao_colortip.c
Modified: addons/src/ao_colortip.c
2 lines changed, 2 insertions(+), 0 deletions(-)
===================================================================
@@ -322,12 +322,14 @@ static void ao_color_tip_set_property(GObject *object, guint prop_id,
void ao_color_tip_document_new(AoColorTip *colortip, GeanyDocument *document)
{
connect_document_button_press_signal_handler(colortip, document);
+ SSM(document->editor->sci, SCI_SETMOUSEDWELLTIME, 300, 0);
}
void ao_color_tip_document_open(AoColorTip *colortip, GeanyDocument *document)
{
connect_document_button_press_signal_handler(colortip, document);
+ SSM(document->editor->sci, SCI_SETMOUSEDWELLTIME, 300, 0);
}
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
More information about the Plugins-Commits
mailing list