Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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