| The Following User Says Thank You to rooted For This Useful Post: | ||
echo "echo 2 > /sys/class/backlight/acx565akm/brightness" | sudo gainroot
--- desktop-cmd-exec-1.01.orig/desktop-cmd-exec.c
+++ desktop-cmd-exec-1.01/desktop-cmd-exec.c
@@ -1096,6 +1096,12 @@
gtk_size_group_add_widget (group, commandLabel);
GtkWidget *commandEntry = hildon_entry_new (HILDON_SIZE_AUTO_WIDTH | HILDON_SIZE_FINGER_HEIGHT);
+ //Disable automatic capitalisation
+ HildonGtkInputMode input_mode = hildon_gtk_entry_get_input_mode (GTK_ENTRY (commandEntry));
+ input_mode &= ~HILDON_GTK_INPUT_MODE_AUTOCAP;
+ //input_mode &= ~(HILDON_GTK_INPUT_MODE_AUTOCAP | HILDON_GTK_INPUT_MODE_DICTIONARY);
+ hildon_gtk_entry_set_input_mode (GTK_ENTRY (commandEntry), input_mode);
+ //END: Disable automatic capitalisation
gtk_box_pack_start (GTK_BOX (commandBox), commandLabel, FALSE, FALSE, 0);
gtk_box_pack_start (GTK_BOX (commandBox), commandEntry, TRUE, TRUE, 0);
if(!new)
| The Following 4 Users Say Thank You to qwerty12 For This Useful Post: | ||
| The Following User Says Thank You to rooted For This Useful Post: | ||