mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-22 19:44:21 +01:00
15 lines
517 B
Diff
15 lines
517 B
Diff
http://git.gnome.org/cgit/ekiga/patch/?id=6e79ecaaa2230a879ea51ff7c5680d9402b96321
|
|
|
|
diff --git a/src/gui/assistant.cpp b/src/gui/assistant.cpp
|
|
index 238609b..883c10d 100644
|
|
--- a/src/gui/assistant.cpp
|
|
+++ b/src/gui/assistant.cpp
|
|
@@ -343,7 +343,7 @@ static void
|
|
name_changed_cb (GtkEntry *entry,
|
|
GtkAssistant *assistant)
|
|
{
|
|
- set_current_page_complete (assistant, gtk_entry_get_text_length (entry) > 0);
|
|
+ set_current_page_complete (assistant, (gtk_entry_get_text (entry))[0] != '\0');
|
|
}
|
|
|
|
|