LarsGit223 commented on this pull request.
> @@ -19,7 +19,7 @@
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
-#include "utils.h"
+#include "geanyplugin.h"
I am not getting that warning if I compile ```codenav/src/utils.c``` from current master.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/pull/206#discussion_r302969990
LarsGit223 commented on this pull request.
> @@ -149,7 +153,11 @@ namespace MultiTerm
context_menu.new_window_activate.connect(on_new_window_activate);
context_menu.move_to_location_activate.connect(on_move_to_location);
}
+#if MULTITERM_GTK3
+ context_menu.popup_at_pointer(event);
Ok, I tried defining something like ```MULTITERM_GTK_3_22``` but failed at changing the makefiles properly. So I leave this as is for now.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/pull/95#discussion_r302962950
LarsGit223 commented on this pull request.
> @@ -53,6 +53,8 @@ public void plugin_init(Geany.Data data)
Alignment align;
MultiTerm.Notebook notebook;
+ toplevel_widgets = new List<Widget>();
Done.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/pull/95#discussion_r302936738
I upgraded my OS from Debian Stretch to Buster, which upgraded Geany from 1.29-1 to 1.33-1. I found that Geany had switched from GTK2 to GTK3. GTK3 does not have as many available themes as GTK2 has. Currently I have found that Debian only offers six GTK3 themes. My favorite theme, the only one that does not assault my eyes, is not available in GTK3 through Debian's package system. So, this me wishing that Geany have a preference to use, my chosen, GTK2 theme instead of the default GTK3 theme, at least until all GTK2 themes have been converted to GTK3.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/2214
The following sequence of actions crashes Geany:
1. start debugging a program with the scope plugin
1. wait for a breakpoint
1. in the message window select _"Debug"_ and then select tab _"Locals"_
1. right click inside the tab to show the context menu, select _"Refresh"_
1. Geany crashes (not always but often)
Remark: the crash does not occur if the user first left clicks into the _"Locals"_ tab content area before selecting _"Refresh"_.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/issues/824
I am using Geany 1.34 on Linux Mint 19.
It happens after compiling the .cu files/cuda. When there are some compilation errors, clicking on that error does not take the cursor to the corresponding line number. Looks like it works fine with .c and .cpp files.
I am unsure if this is a bug or some options that disabled this feature(could not find on google). Thank you.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/2213