Difference between revisions of "Patch Email Confirm Deletion"

From WebOS Internals
Jump to navigation Jump to search
 
(7 intermediate revisions by 4 users not shown)
Line 1: Line 1:
 +
{{template:patch}}
 
This will enable the confirmation when swiping emails off the screen.  Some people have found themselves mistakenly deleting email that they needed, so here's the method to enable the confirm message similar to that for text messages.
 
This will enable the confirmation when swiping emails off the screen.  Some people have found themselves mistakenly deleting email that they needed, so here's the method to enable the confirm message similar to that for text messages.
  
Line 4: Line 5:
 
<pre><nowiki>/usr/palm/applications/com.palm.app.email/app/controllers/list-assistant.js</nowiki></pre>
 
<pre><nowiki>/usr/palm/applications/com.palm.app.email/app/controllers/list-assistant.js</nowiki></pre>
  
Find (on line 46)
+
Find (on line 56)
 
<pre><nowiki>autoconfirmDelete: true,</nowiki></pre>
 
<pre><nowiki>autoconfirmDelete: true,</nowiki></pre>
  
Line 13: Line 14:
  
 
= Concern=
 
= Concern=
Anyone else find that the clicking on the "Delete" button for the confirmation is off a bit?  I've done this like ten times since making the change and pretty much every time it opened the email above the deleted one, rather than confirming the deletion//-jhoff80//
+
Previous to the 1.1 update hitting the "Delete" button would for some reason select the email above, some times below the email you were trying to deleteIt was as if the targeting for the button was not calibrated correctly.  
-- I have noticed this aswell. Now I can see why they did not include it in the official release. Hitting the delete button is off. To successfully hit delete you have to touch the very bottom of the button. ~pyrognome
 
  
'''Target for confirm button fixed in 1.1'''
+
'''The targeting of the "Delete" button seems to be dead on. This is no longer an issue with 1.1'''
 +
 
 +
[UPDATED ABOVE] Correction:- In 1.1, it's on line 56
 +
 
 +
1.2 - Line 57.

Latest revision as of 06:43, 29 September 2009


This will enable the confirmation when swiping emails off the screen. Some people have found themselves mistakenly deleting email that they needed, so here's the method to enable the confirm message similar to that for text messages.

Open

/usr/palm/applications/com.palm.app.email/app/controllers/list-assistant.js

Find (on line 56)

autoconfirmDelete: true,

Change it to

autoconfirmDelete: false,

...enjoy.

Concern

Previous to the 1.1 update hitting the "Delete" button would for some reason select the email above, some times below the email you were trying to delete. It was as if the targeting for the button was not calibrated correctly.

The targeting of the "Delete" button seems to be dead on. This is no longer an issue with 1.1

[UPDATED ABOVE] Correction:- In 1.1, it's on line 56

1.2 - Line 57.