Skip to content

Commit

Permalink
Merge pull request jmportilla#23 from Larkula/master
Browse files Browse the repository at this point in the history
Update deprecated Latex call to use Label instead
  • Loading branch information
jmportilla authored Apr 11, 2017
2 parents a91810c + a772b12 commit 1d5e7cc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions GUI/3 - Widget Events.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@
"outputs": [],
"source": [
"# Create Caption\n",
"caption = widgets.Latex(value = 'The values of slider1 and slider2 are synchronized')\n",
"caption = widgets.Label(value = 'The values of slider1 and slider2 are synchronized')\n",
"\n",
"# Create IntSlider\n",
"slider1 = widgets.IntSlider(description='Slider 1')\n",
Expand All @@ -326,7 +326,7 @@
"outputs": [],
"source": [
"# Create Caption\n",
"caption = widgets.Latex(value = 'Changes in source values are reflected in target1')\n",
"caption = widgets.Label(value = 'Changes in source values are reflected in target1')\n",
"\n",
"# Create Sliders\n",
"source = widgets.IntSlider(description='Source')\n",
Expand Down Expand Up @@ -380,7 +380,7 @@
"outputs": [],
"source": [
"# NO LAG VERSION\n",
"caption = widgets.Latex(value = 'The values of range1 and range2 are synchronized')\n",
"caption = widgets.Label(value = 'The values of range1 and range2 are synchronized')\n",
"\n",
"range1 = widgets.IntSlider(description='Range 1')\n",
"range2 = widgets.IntSlider(description='Range 2')\n",
Expand All @@ -398,7 +398,7 @@
"outputs": [],
"source": [
"# NO LAG VERSION\n",
"caption = widgets.Latex(value = 'Changes in source_range values are reflected in target_range1')\n",
"caption = widgets.Label(value = 'Changes in source_range values are reflected in target_range1')\n",
"\n",
"source_range = widgets.IntSlider(description='Source range')\n",
"target_range1 = widgets.IntSlider(description='Target range ')\n",
Expand Down

0 comments on commit 1d5e7cc

Please sign in to comment.