Disable Autofill when adding row on journal entry

Is there a way to disable the auto-fill when adding new row on journal entries? We find that it is not really helpful and also found bugs with it when dealing with multi-currency

@Dan_Navarro,

Go to the Journal Entry js file and stop the below code:

// set difference
		 if(doc.difference) {
			if(doc.difference > 0) {
		 		row.credit_in_account_currency = doc.difference;
		 		row.credit = doc.difference;
		 	} else {
		 		row.debit_in_account_currency = -doc.difference;
		 		row.debit = -doc.difference;
		 	}
		 }