Active Topics

 



Notices


Reply
Thread Tools
Bundyo's Avatar
Posts: 4,708 | Thanked: 4,649 times | Joined on Oct 2007 @ Bulgaria
#441
Because it has a different browser engine?
__________________
Technically, there are three determinate states the cat could be in: Alive, Dead, and Bloody Furious.
 
qwerty12's Avatar
Posts: 4,274 | Thanked: 5,358 times | Joined on Sep 2007 @ Looking at y'all and sighing
#442
Bundyo, I beg of you to please remove the key-accels. Sliding ma keyboard wreaks havoc on trying to do the simple things like copying and pasting, for example.

You're using key-press-event for the good stuff anyway and copying and pasting seems to be handled by hildon-input-method (read: h-i-m lets me copy and paste into address bar with -accels turned off in GConf ).

Thanks!
 
Posts: 1,950 | Thanked: 1,174 times | Joined on Jan 2008 @ Seattle, USA
#443
EDIT: everybody, you can skip this worthless post!

qwerty12, if you have the time and inclination to restate your post above so us less-knowing types can understand it, too, I'd be interested. And if you lack either time or inclination for it, no big deal. I intuit I agree with what you're asking Bundyo to do.

EDIT: Not important enough for its own post (or at all!), but it looks like I was way off the mark on what I thought qwerty12 was talking about.

Last edited by GeraldKo; 2009-06-19 at 07:57.
 
tso's Avatar
Posts: 4,783 | Thanked: 1,253 times | Joined on Aug 2007 @ norway
#444
quick guess, he is talking about ctrl+x/c/v and friends...
 
Bundyo's Avatar
Posts: 4,708 | Thanked: 4,649 times | Joined on Oct 2007 @ Bulgaria
#445
They are removed in 0.3.1. I'm doing the opposite to before - I'm stopping them in gconf on start, but I restore the previous value on exit. Maybe I shouldn't touch that value at all.
 
qwerty12's Avatar
Posts: 4,274 | Thanked: 5,358 times | Joined on Sep 2007 @ Looking at y'all and sighing
#446
It does not matter whether you disable/enable the GConf value as sliding the keyboard up or down will enable or disable it respectively.

Meh, as always, I've got time. I'll remove the key-accels from Tear and try it out here.
 
Bundyo's Avatar
Posts: 4,708 | Thanked: 4,649 times | Joined on Oct 2007 @ Bulgaria
#447
Great... I'm using the array to hold the values, didn't know that sliding the keyboard actually changes the setting.
 
qwerty12's Avatar
Posts: 4,274 | Thanked: 5,358 times | Joined on Sep 2007 @ Looking at y'all and sighing
#448
Code:
Index: src/uim.vala
===================================================================
--- src/uim.vala	(revision 43)
+++ src/uim.vala	(working copy)
@@ -26,10 +26,10 @@
 		{ "page-details", null, "Details", null, "Details", null },
 		
 		{ "edit", null, "_Edit" },
-		{ "edit-cut", Gtk.STOCK_CUT, "Cut", "<ctrl>X", "Cut", null },
-		{ "edit-copy", Gtk.STOCK_COPY, "Copy", "<ctrl>C", "Copy", null },
-		{ "edit-paste", Gtk.STOCK_PASTE, "Paste", "<ctrl>V", "Paste", null },
-		{ "edit-select-all", Gtk.STOCK_SELECT_ALL, "Select All", "<ctrl>A", "Select All", null },
+		{ "edit-cut", Gtk.STOCK_CUT, "Cut", null, "Cut", null },
+		{ "edit-copy", Gtk.STOCK_COPY, "Copy", null, "Copy", null },
+		{ "edit-paste", Gtk.STOCK_PASTE, "Paste", null, "Paste", null },
+		{ "edit-select-all", Gtk.STOCK_SELECT_ALL, "Select All", null, "Select All", null },
 		
 		{ "view", null, "_View" },
 		{ "view-encoding", null, "Encoding...", null, "Encoding...", null },
@@ -53,12 +53,12 @@
 		{ "close-all-windows", null, "Close All Windows", "<ctrl>Q", "Close All Windows", null },
 		{ "close-remember", null, "Close and Save All", null, "Close and Save All", null },
 		
-		{ "tool-zoomin", null, "Zoom in", "F7", "Zoom in", null },
-		{ "tool-zoomout", null, "Zoom out", "F8", "Zoom out", null },
+		{ "tool-zoomin", null, "Zoom in", null, "Zoom in", null },
+		{ "tool-zoomout", null, "Zoom out", null, "Zoom out", null },
 		{ "tool-find", null, "Find in page", null, "Find in page", null },
 		{ "tool-dashboard", null, "Open Dashboard", null, "Open Dashboard", null },
 
-		{ "toolbar-back", null, "Back in history", "Escape", "Back in history", null },
+		{ "toolbar-back", null, "Back in history", null, "Back in history", null },
 		{ "toolbar-forward", null, "Forward in history", null, "Forward in history", null },
 		{ "toolbar-reload", null, "Reload page", "<ctrl>R", "Reload page", null },
 		
@@ -69,7 +69,7 @@
 	};
 
 	public const ToggleActionEntry[] toggles = {
-		{ "view-fullscreen", null, "Full Screen", "F6", "Full Screen", null, false },
+		{ "view-fullscreen", null, "Full Screen", null, "Full Screen", null, false },
 		{ "tool-showimages", null, "Show Images", "<ctrl>I", "auto_load_images", null, true },
 		{ "tool-plugins", null, "Enable Plugins", "<ctrl>P", "enable_plugins", null, true },
 		{ "tool-javascript", null, "Enable Javascript", null, "enable_scripts", null, true },
This is what I suggest. I've removed the accels that you handle via key-press-event so it stops the double events from happening (going back twice, zooming in double etc) and I've removed the Copy/Paste/Cut/Select All accels as hildon-input-method does an excellent job of handling that and I can copy and paste in the address bar. I have yet to see any functionality removed/downsides.

Jeez... this code formatting sucks

http://qwerty12.qole.org/keyaccels.diff

Last edited by qwerty12; 2009-06-19 at 10:19.
 
Posts: 20 | Thanked: 6 times | Joined on Jul 2008
#449
In the default start screen, which btw is awesome, when I click on the search field it doesn't seem to clear it by default. That is just a little thing that will make the experience so much smoother. I really really love tear, is so amazingly fast. Any chance that the webkit backend will be updated? I guess there is some nice improvements as always
 
tso's Avatar
Posts: 4,783 | Thanked: 1,253 times | Joined on Aug 2007 @ norway
#450
i have the opposite experience, it seems to clear when i want to tap to move the input and do a correction...
 
Reply

Tags
browserd fix, microb killer, webkit


 
Forum Jump


All times are GMT. The time now is 10:32.