[gnome-sound-recorder] mainWindow.js: Remove borders around scrolled window and row spacing in the groupGrid.
- From: Meg Ford (Margaret) <megford src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-sound-recorder] mainWindow.js: Remove borders around scrolled window and row spacing in the groupGrid.
- Date: Mon, 27 Jan 2014 22:56:20 +0000 (UTC)
commit 800077cdf400baab0d177131f5a0da22f213dbb5
Author: Meg Ford <meg387 gmail com>
Date: Mon Jan 27 16:47:03 2014 -0600
mainWindow.js: Remove borders around scrolled window and row spacing in the groupGrid.
src/mainWindow.js | 15 +++++++--------
1 files changed, 7 insertions(+), 8 deletions(-)
---
diff --git a/src/mainWindow.js b/src/mainWindow.js
index 946efdf..85ab0d9 100644
--- a/src/mainWindow.js
+++ b/src/mainWindow.js
@@ -163,7 +163,6 @@ const MainView = new Lang.Class({
groupGrid = new Gtk.Grid({ orientation: Gtk.Orientation.VERTICAL,
hexpand: true,
vexpand: true,
- row_spacing: 12,
column_homogeneous: true });
this.add_titled(groupGrid, name, "View");
},
@@ -171,6 +170,7 @@ const MainView = new Lang.Class({
onPlayStopClicked: function() {
this.activeState = play.getPipeStates();
let listRow = this.listBox.get_selected_row();
+
if (this.activeState == PipelineStates.PLAYING) {
play.stopPlaying();
let rowWidget = listRow.get_child(this.widget);
@@ -180,9 +180,7 @@ const MainView = new Lang.Class({
if (child.name == "PauseToolbar") {
child.hide();
child.sensitive = false;
- }
-
- else {
+ } else {
child.show();
child.sensitive = true;
}
@@ -296,9 +294,6 @@ const MainView = new Lang.Class({
scrolledWinAdd: function() {
this._scrolledWin = new Gtk.ScrolledWindow({ shadow_type: Gtk.ShadowType.IN,
- border_width: 12,
- margin_bottom: 3,
- margin_top: 5,
hexpand: true,
vexpand: true });
this._scrolledWin.set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.AUTOMATIC);
@@ -600,7 +595,9 @@ const MainView = new Lang.Class({
rowGridCallback: function(selectedRow) {
this.destroyLoadMoreButton();
+
if (selectedRow) {
+
if (previousSelRow != null) {
this.hasPreviousSelRow();
}
@@ -677,6 +674,7 @@ const MainView = new Lang.Class({
onPause: function(listRow) {
this.activeState = play.getPipeStates();
+
if (this.activeState == PipelineStates.PLAYING) {
play.pausePlaying();
let rowWidget = listRow.get_child(this.widget);
@@ -736,7 +734,7 @@ const MainView = new Lang.Class({
child.sensitive = true;
}
}));
- listRow.set_property("width-request", width);
+ listRow.set_property("width-request", width);
if (this.activeState != PipelineStates.PAUSED) {
wave = new Waveform.WaveForm(this.wFGrid, selFile);
@@ -775,6 +773,7 @@ const RecordButton = new Lang.Class({
if (activeProfile == null)
activeProfile = 0;
+
audioProfile.profile(activeProfile);
view._record.startRecording(activeProfile);
wave = new Waveform.WaveForm(view.recordGrid);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]