Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
G
geany
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
geany
Commits
4d252c7a
Kaydet (Commit)
4d252c7a
authored
Nis 03, 2018
tarafından
Colomban Wendling
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge pull request #1799 from b4n/plugin-manager/selection-on-double-click
Fix PM button desynchronization and possible crash
üst
11da5557
373852c7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
plugins.c
src/plugins.c
+4
-1
No files found.
src/plugins.c
Dosyayı görüntüle @
4d252c7a
...
...
@@ -1767,7 +1767,7 @@ static gboolean pm_tree_filter_func(GtkTreeModel *model, GtkTreeIter *iter, gpoi
gtk_tree_model_get
(
model
,
iter
,
PLUGIN_COLUMN_PLUGIN
,
&
plugin
,
-
1
);
if
(
!
plugin
)
return
FALS
E
;
return
TRU
E
;
key
=
gtk_entry_get_text
(
GTK_ENTRY
(
pm_widgets
.
filter_entry
));
filename
=
g_path_get_basename
(
plugin
->
filename
);
...
...
@@ -1865,7 +1865,10 @@ static void pm_on_plugin_button_clicked(G_GNUC_UNUSED GtkButton *button, gpointe
if
(
GPOINTER_TO_INT
(
user_data
)
==
PM_BUTTON_CONFIGURE
)
plugin_show_configure
(
&
p
->
public
);
else
if
(
GPOINTER_TO_INT
(
user_data
)
==
PM_BUTTON_HELP
)
{
g_return_if_fail
(
p
->
cbs
.
help
!=
NULL
);
p
->
cbs
.
help
(
&
p
->
public
,
p
->
cb_data
);
}
else
if
(
GPOINTER_TO_INT
(
user_data
)
==
PM_BUTTON_KEYBINDINGS
&&
p
->
key_group
&&
p
->
key_group
->
plugin_key_count
>
0
)
keybindings_dialog_show_prefs_scroll
(
p
->
info
.
name
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment