projects
/
vimb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
59e597e
)
Use other function to clear input text.
author
Daniel Carl
<danielcarl@gmx.de>
Sun, 10 Feb 2013 18:54:31 +0000
(19:54 +0100)
committer
Daniel Carl
<danielcarl@gmx.de>
Sun, 10 Feb 2013 18:54:31 +0000
(19:54 +0100)
src/command.c
patch
|
blob
|
history
diff --git
a/src/command.c
b/src/command.c
index
89cf874
..
d2b8614
100644
(file)
--- a/
src/command.c
+++ b/
src/command.c
@@
-432,7
+432,7
@@
static void command_write_input(const gchar* str)
);
/* remove content from input box */
- gtk_e
ntry_set_text(GTK_ENTRY(vp.gui.inputbox), ""
);
+ gtk_e
ditable_delete_text(GTK_EDITABLE(vp.gui.inputbox), 0, -1
);
/* insert string from arg */
gtk_editable_insert_text(GTK_EDITABLE(vp.gui.inputbox), str, -1, &pos);