[Github-comments] [geany/geany] Multi line edit not work (#2010)

2018-12-06 Thread GFdevelop
With lastest commits multi-line edit was broken, step to reproduce: shift+alt+left click **WORK** shift+alt+left click **NOT WORK** **alt+shift**+left click **DO NOTHING** shift+alt+left click **WORK AGAIN** shift+alt+left click **NOT WORK** ... -- You are receiving this b

Re: [Github-comments] [geany/geany] Multi line edit not work (#2010)

2018-12-06 Thread GFdevelop
platform: arch linux glibc: 2.28-5 gtk2: 2.24.32-1 geany: 1.34 (git >= 2fdf45730) I'm using AUR package because gtk2 version have more plugins. -- 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/i

Re: [Github-comments] [geany/geany] Multi line edit not work (#2010)

2018-12-06 Thread GFdevelop
I can use alt+shift or ctrl+shift but they have same results -- 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/2010#issuecomment-445025826

Re: [Github-comments] [geany/geany] Multi line edit not work (#2010)

2018-12-06 Thread GFdevelop
I can confirm that alt+drag work...but old behaviour is better. -- 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/2010#issuecomment-445032448

Re: [Github-comments] [geany/geany] Multi line edit not work (#2010)

2018-12-06 Thread GFdevelop
With my window manager Mutter(Budgie) I can move window with Super+Drag or Alt+F7+move mouse. -- 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/2010#issuecomment-445034480

Re: [Github-comments] [geany/geany] Multi line edit not work (#2010)

2018-12-06 Thread GFdevelop
> I must say I like the new default, because it's consistent with the binding > for creating rectangular selections with the keyboard (Alt+Shift+Up, > Alt+Shift+Down, etc.). But I agree that we should revert to the long-time > previous default, and if want to change it add an option. > > @elext

Re: [Github-comments] [geany/geany] Multi line edit not work (#2010)

2018-12-06 Thread GFdevelop
> @elextr @GFdevelop could you please test #2011 and verify it works as > expected for you? @b4n it work!!! -- 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/2010#issuecomment-445041654

[Github-comments] [geany/geany] [FEATURE-REQUEST] prettify and compact (#2156)

2019-05-18 Thread GFdevelop
How can I use "Send selection to" based on file type? At this time I'm have multiple shortcuts, for example: prettify json CTRL+1 --> `prettier --parser json` prettify css CTRL+2 --> `prettier --parser css` compact json CTRL+3 --> `minify --type json` compact css CTRL+4 --> `minify --type css` etc

Re: [Github-comments] [geany/geany] Pass file type to "Send Selection" commands (#2156)

2019-05-19 Thread GFdevelop
A better solution would be to add an option in build menu to reload the document after a command execution (`prettier %f && geany %f`) or to replace all text with the command output, because I can use different command and different options based on filetype, for example minify https://github.c

[Github-comments] [geany/geany] FIX: filebrowser plugin: the first rightclick not working with some items on popup: (#2161)

2019-05-22 Thread GFdevelop
- open in geany and open external not starting - find in files don't have the clicked path You can view, comment on, or merge this pull request online at: https://github.com/geany/geany/pull/2161 -- Commit Summary -- * FIX: right-click on filebrowser plugin: -- File Changes -- M plugin

Re: [Github-comments] [geany/geany] FIX: filebrowser plugin: the first rightclick not working with some items on popup: (#2161)

2019-05-22 Thread GFdevelop
GFdevelop commented on this pull request. > @@ -686,6 +688,7 @@ static GtkWidget *create_popup_menu(void) gtk_container_add(GTK_CONTAINER(menu), item); item = gtk_check_menu_item_new_with_mnemonic(_("Show _Hidden Files")); + gtk_check_menu_it

Re: [Github-comments] [geany/geany] FIX: filebrowser plugin: the first rightclick not working with some items on popup: (#2161)

2019-05-22 Thread GFdevelop
GFdevelop commented on this pull request. > @@ -736,13 +739,9 @@ static gboolean on_button_press(GtkWidget *widget, > GdkEventButton *event, gpoint } else if (event->button == 3) { - static GtkWidget *popup_menu = NULL; The old code have no se

Re: [Github-comments] [geany/geany] FIX: filebrowser plugin: the first rightclick not working with some items on popup: (#2161)

2019-05-22 Thread GFdevelop
BEFORE: as you can see the first time (when you open geany) that you use filebrowser the right-click button have no selection, the second time it work. ![before](https://user-images.githubusercontent.com/17930457/58218900-03984800-7d09-11e9-9a0c-68b5b545eca6.gif) AFTER: Work first time and all ti

Re: [Github-comments] [geany/geany] FIX: filebrowser plugin: the first rightclick not working with some items on popup: (#2161)

2019-05-22 Thread GFdevelop
GFdevelop commented on this pull request. > @@ -736,13 +739,9 @@ static gboolean on_button_press(GtkWidget *widget, > GdkEventButton *event, gpoint } else if (event->button == 3) { - static GtkWidget *popup_menu = NULL; You are right, I push a

Re: [Github-comments] [geany/geany] FIX: filebrowser plugin: the first rightclick not working with some items on popup: (#2161)

2019-05-22 Thread GFdevelop
@GFdevelop pushed 1 commit. c22f9b11fcee3e414228bad078401e0b3fc31074 Small fix -- You are receiving this because you are subscribed to this thread. View it on GitHub: https://github.com/geany/geany/pull/2161/files/58f613cc498bbcf9f1aa098809c525dfee0dd452

Re: [Github-comments] [geany/geany] FIX: filebrowser plugin: the first rightclick not working with some items on popup: (#2161)

2019-05-22 Thread GFdevelop
With GTK+3 not working left-click button either the first time. -- 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/pull/2161#issuecomment-495033806

Re: [Github-comments] [geany/geany] FIX: filebrowser plugin: the first rightclick not working with some items on popup: (#2161)

2019-05-23 Thread GFdevelop
``` OS: Arch Linux x86_64 Resolution: 1366x768 @ 60.05Hz DE: Budgie WM: Mutter(Budgie) ``` Current: ``` Geany 1.35, it_IT.UTF-8 GTK 3.24.8, GLib 2.60.2 ``` After installing the last GTK+2 package 1.32.0-1 https://git.archlinux.org/svntogit/community.git/log/trunk?h=packages/geany I can see that t

Re: [Github-comments] [geany/geany] FIX: filebrowser plugin: the first rightclick not working with some items on popup: (#2161)

2019-05-23 Thread GFdevelop
> Unfortunately the solution here (moving the call to > `gtk_check_menu_item_set_active()` to the popup creation) is wrong because > the setting in the menu no longer follows the value set by the plugins > preferences dialog. For me the value of preferences is followed. -- You are receiving t

Re: [Github-comments] [geany/geany] FIX: filebrowser plugin: the first rightclick not working with some items on popup: (#2161)

2019-05-23 Thread GFdevelop
> @GFdevelop open plugin manager, select filebrowser, select preferences, > change show hidden files option, ok, the file list changes to follow the new > setting value, right click on the file list, the value of "show hidden files" > in the menu is incorrect. You are

Re: [Github-comments] [geany/geany] FIX: filebrowser plugin: the first rightclick not working with some items on popup: (#2161)

2019-05-24 Thread GFdevelop
> Unfortunately the solution here (moving the call to > `gtk_check_menu_item_set_active()` to the popup creation) is wrong because > the setting in the menu no longer follows the value set by the plugins > preferences dialog. In my first commit this not exist. > The variable `popup_menu` needs

Re: [Github-comments] [geany/geany] FIX: filebrowser plugin: the first rightclick not working with some items on popup: (#2161)

2019-05-24 Thread GFdevelop
@GFdevelop pushed 1 commit. 9de0575fccee826655beae8fa69bed56be616f75 FIXED: filebrowser "show hidden files" settings changes -- You are receiving this because you are subscribed to this thread. View it on GitHub: https://github.com/geany/geany/pull/

Re: [Github-comments] [geany/geany] FIX: filebrowser plugin: the first rightclick not working with some items on popup: (#2161)

2019-05-24 Thread GFdevelop
@GFdevelop pushed 1 commit. cfc672895f362fe96476f60e1f1d48bd9200bdb0 Fixed testing code -- You are receiving this because you are subscribed to this thread. View it on GitHub: https://github.com/geany/geany/pull/2161/files/9de0575fccee826655beae8fa69bed56be616f75

Re: [Github-comments] [geany/geany] FIX: filebrowser plugin: the first rightclick not working with some items on popup: (#2161)

2019-10-09 Thread GFdevelop
Any news about this pull request? Is this patch working? -- 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/pull/2161#issuecomment-539970761

[Github-comments] [geany/geany] Underscore is not always visible (#2353)

2019-10-11 Thread GFdevelop
``` OS: Arch Linux x86_64 Resolution: 1366x768 @ 60.05Hz DE: Budgie WM: Mutter(Budgie) ``` ``` Geany 1.36, it_IT.UTF-8 GTK 3.24.12, GLib 2.62.1 Font: Monospace Regular, 10 ``` >From geany 1.36 I can't see the underscore: ![geany-underscore](https://user-images.githubusercontent.com/17930457/66687

Re: [Github-comments] [geany/geany] The Underline (ASCII 95) is not visible (#2287)

2019-10-11 Thread GFdevelop
Is not the font, for me not work the size of the font and I am using Monospace Regular, this issue is present from geany 1.36... https://github.com/geany/geany/issues/2353#issue-506073544 -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it

Re: [Github-comments] [geany/geany] The Underline (ASCII 95) is not visible (#2287)

2019-10-11 Thread GFdevelop
@elextr yes, I tried some values: ``` line_height=1;1; line_height=10;10; line_height=0;10; line_height=10;0; line_height=100;100; line_height=100;-10; ``` but nothing work...I'm using Monospace Regular from geany v1.2* and only now there is this -- You are receiving this because you are sub

[Github-comments] [geany/geany] Feature request: sidebar waterfall menu (#1718)

2017-12-14 Thread GFdevelop
Instead of showing the tabs it would be more convenient if a mouseover (without clicking) opens a cascade menu with the symbols, documents, plugin tabs, etc... It would be a much faster and practical solution with just one click opens the desired tab. -- You are receiving this because you are s

Re: [Github-comments] [geany/geany] Feature request: sidebar waterfall menu (#1718)

2017-12-14 Thread GFdevelop
I don't know GTK but you can see my idea here https://www.w3schools.com/howto/howto_css_dropdown.asp move mouse over "Hover Me" -- 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/1718#issu

Re: [Github-comments] [geany/geany] Feature request: sidebar waterfall menu (#1718)

2017-12-14 Thread GFdevelop
Is possible to make a settings option? The user can select if open menu with a click on it or with only mouse over it... -- 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/1718#issuecomment

Re: [Github-comments] [geany/geany] Feature request: sidebar waterfall menu (#1718)

2017-12-14 Thread GFdevelop
I do not know if I explained myself well, the menu should contain only the titles of the tabs, and clicking on an item such as "Symbols" opens the Symbols tab. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.

Re: [Github-comments] [geany/geany] Feature request: sidebar waterfall menu (#1718)

2017-12-15 Thread GFdevelop
What is GTKStack? This is right > possibly opening on mouse-over instead if normal click and this > The drop-down would contain the label, so in place of the tab. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://git

Re: [Github-comments] [geany/geany] Feature request: sidebar waterfall menu (#1718)

2017-12-15 Thread GFdevelop
![export](https://user-images.githubusercontent.com/17930457/34047415-7e30b55c-e1b0-11e7-859e-043a1a10dfa9.png) ![export 1](https://user-images.githubusercontent.com/17930457/34047424-81936582-e1b0-11e7-8d9e-ec1c23e9b31f.png) ![export 2](https://user-images.githubusercontent.com/17930457/34047428