Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
appinventor-sources
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
appinventor-sources
Commits
bf084ac7
Commit
bf084ac7
authored
Jan 13, 2020
by
Evan W. Patton
Committed by
Jeffrey Schiller
Jan 13, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix minor bugs identified by 'devmode'
Change-Id: Ic50a603b585b54e16719505e05972f614888aa93
parent
0e63fdc4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
appinventor/appengine/src/com/google/appinventor/client/editor/simple/components/MockCheckBox.java
...nventor/client/editor/simple/components/MockCheckBox.java
+1
-1
appinventor/appengine/src/com/google/appinventor/client/editor/simple/components/MockSwitch.java
...pinventor/client/editor/simple/components/MockSwitch.java
+1
-1
appinventor/appengine/src/com/google/appinventor/client/widgets/properties/TextAreaPropertyEditor.java
...tor/client/widgets/properties/TextAreaPropertyEditor.java
+2
-2
No files found.
appinventor/appengine/src/com/google/appinventor/client/editor/simple/components/MockCheckBox.java
View file @
bf084ac7
...
@@ -47,7 +47,7 @@ public final class MockCheckBox extends MockToggleBase<CheckBox> {
...
@@ -47,7 +47,7 @@ public final class MockCheckBox extends MockToggleBase<CheckBox> {
// Get the Element from the CheckBox.
// Get the Element from the CheckBox.
// Call DOM.clone to make a deep clone of that element.
// Call DOM.clone to make a deep clone of that element.
// Pass that cloned element to the super constructor.
// Pass that cloned element to the super constructor.
super
(
DOM
.
clone
(
ptb
.
getElement
(),
true
));
super
(
DOM
.
clone
(
ptb
.
getElement
()
.
getFirstChildElement
()
,
true
));
}
}
}
}
...
...
appinventor/appengine/src/com/google/appinventor/client/editor/simple/components/MockSwitch.java
View file @
bf084ac7
...
@@ -63,7 +63,7 @@ public final class MockSwitch extends MockToggleBase<HorizontalPanel> {
...
@@ -63,7 +63,7 @@ public final class MockSwitch extends MockToggleBase<HorizontalPanel> {
*/
*/
static
class
ClonedSwitch
extends
InlineHTML
{
static
class
ClonedSwitch
extends
InlineHTML
{
ClonedSwitch
(
HorizontalPanel
ptb
)
{
ClonedSwitch
(
HorizontalPanel
ptb
)
{
super
(
DOM
.
clone
(
ptb
.
getElement
(),
true
));
super
(
DOM
.
clone
(
ptb
.
get
Widget
(
0
).
get
Element
(),
true
));
}
}
}
}
...
...
appinventor/appengine/src/com/google/appinventor/client/widgets/properties/TextAreaPropertyEditor.java
View file @
bf084ac7
...
@@ -25,7 +25,7 @@ public class TextAreaPropertyEditor extends TextPropertyEditorBase {
...
@@ -25,7 +25,7 @@ public class TextAreaPropertyEditor extends TextPropertyEditorBase {
public
TextAreaPropertyEditor
()
{
public
TextAreaPropertyEditor
()
{
super
(
new
TextArea
());
super
(
new
TextArea
());
textEdit
.
getElement
().
getStyle
().
setProperty
(
"min
-h
eight"
,
MIN_CSS_HEIGHT
);
textEdit
.
getElement
().
getStyle
().
setProperty
(
"min
H
eight"
,
MIN_CSS_HEIGHT
);
textEdit
.
getElement
().
getStyle
().
setProperty
(
"max
-w
idth"
,
MAX_CSS_WIDTH
);
textEdit
.
getElement
().
getStyle
().
setProperty
(
"max
W
idth"
,
MAX_CSS_WIDTH
);
}
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment