When I type the parentheses of a Widget, this "message" shows. What annoying me most is that I have to close it by clicking somewhere with the mouse.
Is that any ways to disable is function?
I am not sure about this is related to the spicify language.
Try to disable the hover action in VSCode settings.json file:
"editor.hover.enabled": false
Or you can make it disappear when the mouse hover on it.
"editor.hover.sticky": false
Related
This is my first question, I hope it will be a well constructed one.
I'm currently using Delphi 10.4 Community Edition and I installed SynEdit through the GetIt Package Manager.
The problem I'm facing is the following: I created a VCL form, dropped a TSynEdit in it and launched the application. The problem is that if I press the TAB or SHIFT+TAB, nothing happens. I tried to put breakpoints in the following methods of TSynEdit:
CommandProcessor
ExecuteCommand
DoTabKey
and the debugger never enters them while pressing those keys.
I then looked at the Keystrokes property of my TSynEdit control and, although the keystroke for TAB is defined, I think that the shortcut is "fake". What I mean is that if I try to modify what is associated to the ecTab command and manually choose the shortcut value, nor Tab or Shift+Tab are present in the listbox.
Did anyone ever experienced a problem like this? If so, how did you manage to solve it?
PS: Indentation works with other shortcuts, such as CTRL+SHIFT+I/U.
As indicated by Keith Miller, it was as simple as setting to True the property WantTabs for the TSynEdit control.
Still, if anyone knows why the TAB and SHIFT+TAB shortucts don't appear in the listbox of selectable shortcuts, please let us know.
I am using GGTS on WIN7 64bit to edit my Grails project.
When editing GSP or groovy, once I point my mouse to something in the source code, a tooltip will show itself in less than 1ms. This is very annoying.
What I really wanna do is to click that source code and start to type something in that position. Because of the too-fast showing of tooltip, my click will drop on that tooltip and breaks my thoughts.
Can anyone help to set the tooltip to show itself after 500ms of mouse pointing at the same position? Thanks.
I didn't find this configuration from Windows->Preference of my GGTS 3.4.0
You can configure Eclipse to show hovers only when you really want them.
For controlling the hovers behavior for the GSP editor:
Go To Windows > Preferences > General > Editors > Structured Text Editors
Switch to the Hovers tab
Choose "Combined Hover"
Add a "Pressed key modifier while hovering"
This will cause the hovers to appear only when you press this specific key combination and hover over the text.
The same can be done for other editor types.
Is there a setting for highcharts tooltips where you can set it to display on click versus hover?
I have seen a lot of people discussing the tooltip staying on click but then there is still the hover present. Is there a way to disable the hover and use only click?
There is not a setting for that in Highcharts currently.
There is a feature request for this functionality here: http://highcharts.uservoice.com/forums/55896-general/suggestions/2607304-allow-the-tooltip-to-appear-when-a-point-is-clicke
Feel free to add your votes and comments.
UPDATE:
I have started using the jquery UI dialog for this purpose.
I disable the tooltip in Highcharts, and add a click event to the point in the plotOptions.
In that click function I call an external function, sending it the point object, and build my tooltip within the dialog.
http://jqueryui.com/dialog/
http://api.highcharts.com/highcharts#plotOptions.series.point.events.click
You could also use Highslide for this purpose, and keep it all in the family.
http://highslide.com/
Working example:
http://jsfiddle.net/jlbriggs/LHZ3E/embedded/result/
Adding for those who has problems like me with useHTML: true and wants to display tooltip only on click and not on hover and wants to have only one tooltip on screen.
Here is a fiddle.
I have a wpf project which uses transparent windows and I share this transparent window styling for my dialog windows and my mainwindow.
I am getting an error on my DragMove() event of my MainWindow AFTER I close a dialog window that uses the same window style. To make this even more strange this exception only occurs when I handle a mouseleftbutton event on a label in my Status Bar on the MainWindow. IF I swap out the label for a button and replace the mouseleftbuttondown with a click event I do not get the error.
The strange thing is that the dialog window that pops up does not implement dragmove, and I'm not dragging around my mainwindow either. Somehow dragmove gets called after my code execution returns to the mainwindow after a showdialog() call.
An easy fix for me currently is to swap my label for a button and wire up the click event instead.
However, I'm more interested in hearing about what causes this issue and why a click event works but the mouse one fails miserably.
My "StatusBar" is simply a stackpanel with labels and other stackpanels (which contain more labels).
Has anyone else fought this issue before? Would I need to implement some sort of mouseclick event handler override so that I can capture and cancel this exception from happening?
Repro code can be provided if needed. I got enough hits on dragmove here so I am hoping this is an easy one for somebody out there.
Thanks in advance for any help!
my brain isn't working properly today. I forgot about routing of events in this scenario. I simply needed to set the Handled property on my routedevent that fired off when the mousebutton was down. Somehow I missed that in the debugger before posting the thread.
The 'correct' way to make a borderless window movable --> https://stackoverflow.com/a/3275712/146032
Be sure to only call DragMove when triggered by event MouseLeftButtonDown and don't forget to handle the event using e.Handled=true;
if you receive this exception when messagebox show complete. place Dragemove();
inside try and empty in catch.
This thing was great at first. For example, I comment a group of highlighted code by hitting the slash and the "What happened" dialog pops up and tells me what happened.
Now it is just freaking annoying. I only really needed to know what happened the first time. Is there any way to disable this thing?
The "What happened?" dialog can be disabled from the options screen.
Use either the [CTRL+SHIFT+ALT+O] key combination or the DevExpress\Options menu to reach the options screen.
Then navigate the tree on the left to the Core\Features
The option you're looking for is the first checkbox on this screen.
If you untick "Show Feature UI window", then this dialog will not show again.
If you click the "OK" or "Disable" link in the "What happened?" hint - it won't appear for the specific feature anymore (it will remember your choice for this specific feature), but will appear for others only.
The pop-ups only appear the first few times you do something to ensure you are clear what's been done, after that they stop appearing. I think you might be able to change that behaviour from the DevExpress menu.