Browse Source

Merge branch 'hotfix'

version-14
mbauskar 7 years ago
parent
commit
bc396d5cba
5 changed files with 13 additions and 2 deletions
  1. +1
    -1
      frappe/__init__.py
  2. +2
    -1
      frappe/core/doctype/user/user.json
  3. +1
    -0
      frappe/custom/doctype/customize_form/customize_form.js
  4. +4
    -0
      frappe/public/css/desk.css
  5. +5
    -0
      frappe/public/less/desk.less

+ 1
- 1
frappe/__init__.py View File

@@ -14,7 +14,7 @@ import os, sys, importlib, inspect, json
from .exceptions import * from .exceptions import *
from .utils.jinja import get_jenv, get_template, render_template, get_email_from_template from .utils.jinja import get_jenv, get_template, render_template, get_email_from_template


__version__ = '9.1.5'
__version__ = '9.1.6'
__title__ = "Frappe Framework" __title__ = "Frappe Framework"


local = Local() local = Local()


+ 2
- 1
frappe/core/doctype/user/user.json View File

@@ -1213,6 +1213,7 @@
"label": "Background Image", "label": "Background Image",
"length": 0, "length": 0,
"no_copy": 0, "no_copy": 0,
"options": "image",
"permlevel": 0, "permlevel": 0,
"precision": "", "precision": "",
"print_hide": 0, "print_hide": 0,
@@ -2001,7 +2002,7 @@
"istable": 0, "istable": 0,
"max_attachments": 5, "max_attachments": 5,
"menu_index": 0, "menu_index": 0,
"modified": "2017-09-14 14:55:26.044665",
"modified": "2017-10-09 15:33:43.818915",
"modified_by": "Administrator", "modified_by": "Administrator",
"module": "Core", "module": "Core",
"name": "User", "name": "User",


+ 1
- 0
frappe/custom/doctype/customize_form/customize_form.js View File

@@ -146,6 +146,7 @@ frappe.customize_form.set_primary_action = function(frm) {
return frm.call({ return frm.call({
doc: frm.doc, doc: frm.doc,
freeze: true, freeze: true,
btn: frm.page.btn_primary,
method: "save_customization", method: "save_customization",
callback: function(r) { callback: function(r) {
if(!r.exc) { if(!r.exc) {


+ 4
- 0
frappe/public/css/desk.css View File

@@ -626,6 +626,10 @@ li.user-progress .progress-bar {
} }
.frappe-rtl .checkbox .disp-area { .frappe-rtl .checkbox .disp-area {
margin-right: -20px; margin-right: -20px;
margin-left: 0px;
}
.checkbox .disp-area {
margin-left: -20px;
} }
.text-editor { .text-editor {
height: 400px; height: 400px;


+ 5
- 0
frappe/public/less/desk.less View File

@@ -484,6 +484,11 @@ li.user-progress {


.frappe-rtl .checkbox .disp-area { .frappe-rtl .checkbox .disp-area {
margin-right: -20px; margin-right: -20px;
margin-left: 0px;
}

.checkbox .disp-area {
margin-left: -20px;
} }


.text-editor { .text-editor {


Loading…
Cancel
Save